/* Shared shell for the three legal pages. Deliberately plain: these are read,
   not admired, and the brand shows up in the header and the type — not in
   effects that get in the way of someone checking a clause. */

:root {
  --fc-blue: #3E8DC8;
  --fc-blue-deep: #2A6B9C;
  --fc-ink: #14202b;
  --fc-muted: #5b6b7a;
  --fc-rule: rgba(20, 50, 80, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: linear-gradient(#ffffff 0%, #eef5fb 100%);
  background-attachment: fixed;
  color: var(--fc-ink);
  font-family: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 64px) max(20px, 5vw) clamp(60px, 8vw, 110px);
}

/* --- header --- */

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: clamp(24px, 4vw, 42px);
  margin-bottom: clamp(26px, 4vw, 46px);
  border-bottom: 1px solid var(--fc-rule);
}
.top__logo img { display: block; height: 30px; width: auto; }
.top__back {
  color: var(--fc-blue-deep);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.top__back:hover { text-decoration: underline; }
.top__back:focus-visible { outline: 2px solid var(--fc-blue); outline-offset: 3px; border-radius: 4px; }

/* --- type --- */

h1 {
  margin: 0 0 8px;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.lede {
  margin: 0 0 clamp(30px, 4vw, 48px);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--fc-muted);
}
h2 {
  margin: clamp(34px, 4.5vw, 52px) 0 10px;
  font-size: clamp(20px, 2.6vw, 25px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 {
  margin: 26px 0 6px;
  font-size: 17.5px;
  font-weight: 600;
}
p, li { color: #23323f; }
p { margin: 0 0 14px; }
ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 7px; }
a { color: var(--fc-blue-deep); }
a:focus-visible { outline: 2px solid var(--fc-blue); outline-offset: 2px; border-radius: 3px; }

/* --- the parts only FirstClickz can fill in ---
   Styled loudly on purpose: a legal page that ships with "[KvK-nummer]" still
   in it is worse than no page, so these have to be impossible to miss. */
.todo {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 5px;
  background: #ffe5e2;
  box-shadow: inset 0 0 0 1px #f0a9a1;
  color: #a3271b;
  font-weight: 600;
  font-size: 0.94em;
  white-space: nowrap;
}

/* a boxed note for the reader, not a placeholder */
.note {
  margin: clamp(26px, 3.5vw, 40px) 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(62, 141, 200, 0.08);
  box-shadow: inset 0 0 0 1px rgba(62, 141, 200, 0.22);
  font-size: 15.5px;
  color: #26404f;
}
.note p:last-child { margin-bottom: 0; }

/* --- definition rows, for "who we are" blocks --- */
.rows { margin: 0 0 18px; }
.rows div {
  display: grid;
  grid-template-columns: minmax(120px, 190px) 1fr;
  gap: 6px 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--fc-rule);
  font-size: 16px;
}
.rows dt { color: var(--fc-muted); }
.rows dd { margin: 0; }

@media (max-width: 520px) {
  .rows div { grid-template-columns: 1fr; gap: 2px; padding: 11px 0; }
  .rows dt { font-size: 14px; }
}

/* --- footer --- */
.foot {
  margin-top: clamp(46px, 6vw, 76px);
  padding-top: 22px;
  border-top: 1px solid var(--fc-rule);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 14.5px;
  color: var(--fc-muted);
}
.foot a { color: var(--fc-muted); text-decoration: none; }
.foot a:hover { color: var(--fc-blue-deep); text-decoration: underline; }

.updated { margin-top: 4px; font-size: 14.5px; color: var(--fc-muted); }

::selection { background: rgba(62, 141, 200, 0.22); }

/* ── Telefoon en tablet ──────────────────────────────────────────────────────
   Zelfde reden als op de artikelpagina's: de kop- en footerlinks waren te
   klein om betrouwbaar te raken met een duim. */
@media (max-width: 1024px) {
  .top__logo,
  .top__back,
  .foot a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}
