/* =========================================================================
   Vooruit Werkt, stijlblad voor de website en het beheer.
   Opbouw: basis, koptekst, blokken van de homepagina, werk, formulieren,
   projectpagina, voet, beheer, schermbreedtes.
   ========================================================================= */

:root {
  --ink: #163d33;
  --ink-deep: #0d2d26;
  --ink-soft: #416157;
  --ink-mute: #527269;
  --paper: #f6f7f3;
  --paper-deep: #edf0e9;
  --orange: #ff6b36;
  --orange-deep: #e85520;
  --line: rgba(22, 61, 51, .17);
  --line-light: rgba(246, 247, 243, .22);
  --red: #b3261e;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --shell: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, dl, figure { margin-top: 0; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 99;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
}
.skip-link:focus { left: 0; }

.shell {
  width: min(var(--shell), calc(100% - 56px));
  margin-inline: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--ink-mute);
  font: 500 10px/1.2 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow b { color: var(--orange); }

em { color: var(--orange); font-style: normal; font-weight: 400; }

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: .98;
  letter-spacing: -.076em;
}

h2 { letter-spacing: -.06em; }

.section { padding-block: clamp(72px, 9vw, 128px); }

.section > h2,
.section-head h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 65px);
  line-height: .98;
  letter-spacing: -.072em;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 40px;
}
.section-intro {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* --------------------------------------------------------------- knoppen -- */

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 15px 24px;
  border: 0;
  background: var(--orange);
  color: var(--ink-deep);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--orange-deep); color: #fff; }

.button-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.button-ghost:hover { background: var(--paper-deep); color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.text-link:hover { color: var(--orange); }
.arrow { color: var(--orange); font-size: 17px; }

/* ------------------------------------------------------------- bovenbalk -- */

.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 8px 20px;
  background: var(--ink);
  color: var(--paper);
  font: 500 10px/1.3 var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  text-align: center;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex: none; }

.site-header { position: relative; z-index: 20; background: var(--paper); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
}

.brand {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.09em;
  white-space: nowrap;
}
.brand b { color: var(--orange); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
.site-nav a:hover { color: var(--orange); }
.site-nav a[aria-current="page"] { color: var(--orange); }
.nav-cta a { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: 700 12px/1 var(--font);
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 4px; }
.nav-toggle-bars span { display: block; width: 18px; height: 2px; background: currentColor; }

/* -------------------------------------------------------------------- hero -- */

.hero {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: clamp(34px, 7vw, 110px);
  padding-block: 50px 84px;
}
.hero-intro {
  max-width: 495px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 468px;
  background: var(--ink);
  color: var(--paper);
}
.visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid var(--line-light);
  z-index: -1;
}
.visual::after {
  content: "";
  position: absolute;
  top: -43px;
  right: -43px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--orange);
  z-index: -1;
}
.label {
  position: absolute;
  color: rgba(246, 247, 243, .68);
  font: 500 9px/1 var(--mono);
  letter-spacing: .12em;
}
.label.top { top: 40px; left: 42px; }
.label.bottom { right: 34px; bottom: 39px; text-align: right; }

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(246, 247, 243, .24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit.a { width: 290px; height: 290px; }
.orbit.b { width: 420px; height: 220px; transform: translate(-50%, -50%) rotate(-25deg); }

.center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 10px rgba(255, 107, 54, .16);
}
.center small { margin-bottom: 8px; color: #607b72; font: 500 8px/1 var(--mono); letter-spacing: .1em; }
.center strong { font-size: 26px; letter-spacing: -.08em; text-align: center; line-height: 1.05; }
.center i { width: 10px; height: 10px; margin-top: 11px; border-radius: 50%; background: var(--orange); }

.node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font: 700 9px/1 var(--mono);
  letter-spacing: .05em;
  text-align: center;
}
.node.a { top: 145px; left: 45px; }
.node.b { top: 139px; right: 43px; background: var(--paper); }
.node.c { bottom: 46px; left: 112px; width: 69px; height: 69px; background: #47786a; color: var(--paper); }

/* ------------------------------------------------------------------ proof -- */

.proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 23px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.proof p { margin: 0; font-size: 14px; font-weight: 700; white-space: nowrap; }
.proof p:last-child { color: var(--ink); }
.proof i { flex: 1; height: 1px; background: var(--line); }

/* --------------------------------------------------------------- diensten -- */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 61px;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: 29px;
}
.card.web { background: var(--orange); color: var(--ink-deep); }
.card.ai { background: var(--ink); color: var(--paper); }
.cardtop { display: flex; justify-content: space-between; font: 500 10px/1 var(--mono); letter-spacing: .11em; }
.card h3 {
  max-width: 450px;
  margin-bottom: 19px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.card p { max-width: 430px; margin-bottom: 0; font-size: 15px; line-height: 1.55; }
.card.ai > div > p { color: #c1d5ce; }
.cardfoot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 19px;
  border-top: 1px solid currentColor;
}
.cardfoot p { font-size: 12px; line-height: 1.45; }
.cardfoot a { font-size: 13px; font-weight: 700; white-space: nowrap; }
.cardfoot a:hover { text-decoration: underline; }

/* -------------------------------------------------------------- statement -- */

.statement {
  position: relative;
  display: grid;
  grid-template-columns: .4fr 1fr .58fr;
  align-items: end;
  gap: 30px;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 128px);
  border-top: 1px solid var(--line);
}
.statement::before {
  content: "03";
  position: absolute;
  z-index: -1;
  top: 38px;
  right: -13px;
  color: var(--paper-deep);
  font-size: clamp(190px, 27vw, 370px);
  font-weight: 700;
  letter-spacing: -.14em;
  line-height: .7;
}
.statement p { margin: 0; }
.statement .big { font-size: clamp(24px, 2.7vw, 39px); line-height: 1.1; letter-spacing: -.055em; }
.statement .big strong { color: var(--orange); font-weight: 520; }
.note { max-width: 240px; color: var(--ink-mute); font-size: 14px; line-height: 1.5; }

/* --------------------------------------------------------------- werkwijze -- */

.process {
  display: grid;
  grid-template-columns: .75fr 1.05fr;
  gap: clamp(48px, 10vw, 160px);
  border-top: 1px solid var(--line);
}
.process ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process li {
  display: grid;
  grid-template-columns: 53px 1fr;
  gap: 24px;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}
.process li > b { padding-top: 5px; color: var(--orange); font: 500 10px/1 var(--mono); }
.process li h3 { margin-bottom: 9px; font-size: 21px; letter-spacing: -.04em; }
.process li p { max-width: 400px; margin-bottom: 0; color: var(--ink-mute); font-size: 14px; line-height: 1.55; }

/* ----------------------------------------------------------------- pakket -- */

.package {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  margin-bottom: clamp(72px, 9vw, 128px);
  padding: clamp(38px, 5vw, 68px);
  background: var(--ink);
  color: var(--paper);
}
.package .eyebrow { color: #b1cac2; }
.package h2 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(31px, 3.7vw, 51px);
  line-height: 1.01;
  letter-spacing: -.066em;
}
.checks { align-self: center; }
.checks div { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line-light); }
.checks div:first-child { border-top: 1px solid var(--line-light); }
.checks b { color: var(--orange); }
.checks p { margin: 0; font-size: 16px; }

/* ------------------------------------------------------------------- werk -- */

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.work-section .work-grid { margin-top: 0; }

.work-card { background: var(--paper-deep); }
.work-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .18s ease;
}
.work-link:hover { transform: translateY(-3px); }
.work-link:hover .work-more-link { color: var(--orange); }

/* Vast kader voor elk projectbeeld: altijd dezelfde maat, nooit bijgesneden
   en nooit groter gemaakt dan het beeld zelf is. */
.work-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  padding: 9% 11%;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.work-thumb img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.work-thumb.is-empty {
  padding: 0;
  background: var(--paper-deep);
}
.work-initials {
  color: var(--ink);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -.07em;
  opacity: .45;
}
.work-thumb.is-empty::after {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .85;
}

.work-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 9px;
  padding: 24px 24px 26px;
}
.work-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-mute);
  font: 500 10px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tag { color: var(--orange); }
.work-title { font-size: 22px; font-weight: 700; line-height: 1.15; letter-spacing: -.045em; }
.work-client { color: var(--ink-soft); font-size: 14px; font-weight: 700; }
.work-summary { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.work-more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

.work-more { margin: 40px 0 0; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 8px 40px;
}
.filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}
.filter span { color: var(--ink-mute); font: 500 11px/1 var(--mono); }
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.filter.is-active span { color: var(--orange); }

.work-section { padding-bottom: clamp(60px, 8vw, 110px); }

.empty-block {
  padding: clamp(30px, 4vw, 48px);
  background: var(--paper-deep);
}
.empty-block p { max-width: 520px; margin-bottom: 22px; color: var(--ink-soft); font-size: 16px; }

/* -------------------------------------------------- pagina's zonder hero -- */

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  align-items: end;
  gap: clamp(30px, 6vw, 80px);
  padding-block: clamp(46px, 6vw, 80px) clamp(40px, 5vw, 64px);
}
.page-hero h1 { margin-bottom: 0; }
.page-intro {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.crumbs { padding-block: 26px 0; font-size: 13px; font-weight: 700; }
.crumbs a { display: inline-flex; align-items: center; gap: 8px; }
.crumbs a:hover { color: var(--orange); }

.band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(34px, 4.5vw, 60px);
  background: var(--ink);
  color: var(--paper);
  margin-bottom: clamp(60px, 8vw, 110px);
}
.band h2 { margin-bottom: 12px; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.02; letter-spacing: -.06em; }
.band p { max-width: 420px; margin: 0; color: #c1d5ce; font-size: 15px; }

/* --------------------------------------------------------- projectpagina -- */

.project-hero {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  align-items: end;
  gap: clamp(30px, 6vw, 80px);
  padding-block: 30px clamp(36px, 5vw, 56px);
}
.project-hero h1 { font-size: clamp(38px, 4.8vw, 66px); }
.project-hero .eyebrow b { color: var(--orange); }

.facts { margin: 0; border-top: 1px solid var(--line); }
.facts > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.facts dt { color: var(--ink-mute); font: 500 10px/1.6 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.facts dd { margin: 0; font-size: 15px; font-weight: 700; }
.facts dd a:hover { color: var(--orange); }

/* Zelfde kader bovenaan de projectpagina, altijd even hoog. */
.project-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(200px, 27vw, 360px);
  margin: 0 auto clamp(46px, 6vw, 72px);
  padding: clamp(22px, 3.5vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
}
.project-figure img {
  width: auto;
  height: auto;
  /* Klein beeld mag een stukje meegroeien, maar nooit tot over de rand. */
  min-width: min(100%, 380px);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-body {
  display: grid;
  grid-template-columns: 1.25fr .65fr;
  gap: clamp(40px, 6vw, 90px);
  padding-bottom: clamp(50px, 7vw, 90px);
}

.prose { max-width: 700px; }
.prose h2 {
  margin: 44px 0 14px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -.05em;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.prose a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--orange); }
.prose-cta { margin-top: 34px; }
.prose-cta a { text-decoration: none; }
.prose-page { padding-bottom: clamp(60px, 8vw, 110px); }

/* Veelgestelde vragen: vraag links, antwoord rechts. */
.faq { margin-top: clamp(34px, 4vw, 54px); border-top: 1px solid var(--line); }
.faq-item {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(20px, 4vw, 60px);
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--line);
}
.faq-item h3 { margin: 0; font-size: clamp(18px, 2vw, 22px); line-height: 1.2; letter-spacing: -.04em; }
.faq-item p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }

/* Tekst links, kader met punten rechts. */
.duo {
  display: grid;
  grid-template-columns: 1.15fr .75fr;
  align-items: start;
  gap: clamp(32px, 5vw, 70px);
  margin-top: clamp(34px, 4vw, 54px);
}

.highlights { align-self: start; padding: 28px; background: var(--paper-deep); }
.highlights h2 { margin: 0 0 6px; font-size: 18px; letter-spacing: -.04em; }
.highlights ul { margin: 0; padding: 0; list-style: none; }
.highlights li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.45;
}
.highlights li:last-child { border-bottom: 0; padding-bottom: 0; }
.highlights b { color: var(--orange); }

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-block: 34px clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--line);
}
.project-nav-item { display: grid; gap: 6px; }
.project-nav-item.is-next { text-align: right; }
.project-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-mute);
  font: 500 10px/1 var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.project-nav-item.is-next .project-nav-label { justify-content: flex-end; }
.project-nav-title { font-size: 20px; font-weight: 700; letter-spacing: -.045em; }
.project-nav-item:hover .project-nav-title { color: var(--orange); }

/* --------------------------------------------------------------- contact -- */

.contact-cta {
  display: grid;
  grid-template-columns: 1fr .83fr;
  align-items: end;
  gap: 60px;
  border-top: 1px solid var(--line);
}
.contact-cta h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.074em;
}
.contact-card { padding: 34px; background: var(--paper-deep); }
.contact-card p { max-width: 370px; margin-bottom: 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.55; }
.contact-card .hint { display: block; margin-top: 16px; color: var(--ink-mute); font-size: 12px; }
.contact-direct { margin: 22px 0 0; font-size: 14px; }
.contact-direct a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  gap: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(60px, 8vw, 110px);
}

.side-card { padding: 28px; background: var(--paper-deep); }
.side-card + .side-card { margin-top: 20px; }
.side-card h2 { margin-bottom: 14px; font-size: 18px; letter-spacing: -.04em; }
.side-card p { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.side-card p a { text-decoration: underline; text-underline-offset: 3px; }
.side-card p a:hover { color: var(--orange); }
.side-steps ol { margin: 0; padding: 0; list-style: none; }
.side-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}
.side-steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.side-steps b { color: var(--orange); font: 500 10px/1.6 var(--mono); }

/* ------------------------------------------------------------- formulier -- */

.field { display: grid; gap: 7px; margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: -.01em; }
.field label span { color: var(--orange); }

input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="password"], input[type="number"], input[type="date"], select, textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.45;
}
textarea { resize: vertical; min-height: 120px; }
input[type="file"] { font-family: inherit; font-size: 14px; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 24px, calc(100% - 14px) 24px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.field .hint { color: var(--ink-mute); font-size: 12px; line-height: 1.45; }
.upload-melding { display: block; margin-top: 2px; }
.upload-melding.is-warn { color: var(--red); font-weight: 700; }
.field .error { color: var(--red); font-size: 12px; font-weight: 700; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--red); }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { margin: 18px 0 0; color: var(--ink-mute); font-size: 12px; line-height: 1.5; }
.form-note a { text-decoration: underline; text-underline-offset: 3px; }

.notice {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--ink);
  background: var(--paper-deep);
  font-size: 14px;
}
.notice p { margin: 0; }
.notice-icon { font-size: 16px; }
.notice-ok { border-left-color: #2f7d5c; }
.notice-error { border-left-color: var(--red); }
.notice-warn { border-left-color: var(--orange); }

/* ------------------------------------------------------------------- voet -- */

.site-footer { border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 60px 44px;
}
.footer-brand { margin-bottom: 14px; font-size: 26px; }
.footer-about p { max-width: 330px; margin: 0; color: var(--ink-mute); font-size: 14px; line-height: 1.6; }
.footer-col h2 {
  margin-bottom: 16px;
  font: 500 10px/1 var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer-links { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; font-size: 14px; }
.footer-links a:hover { color: var(--orange); }
.footer-links li { color: var(--ink-soft); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 22px 40px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { margin: 0; color: var(--ink-mute); font-size: 12px; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------------------------------------------------------------- beheer -- */

body.admin { background: var(--paper-deep); }

.admin-bar { background: var(--ink); color: var(--paper); }
.admin-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding-block: 12px;
}
.admin-bar .brand { font-size: 22px; }
.admin-tag {
  padding: 4px 9px;
  background: var(--orange);
  color: var(--ink-deep);
  font: 700 10px/1.6 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.admin-nav { margin-left: auto; display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; }
.admin-nav a:hover { color: var(--orange); }
.admin-nav a[aria-current="page"] { color: var(--orange); font-weight: 700; }
.admin-nav .count {
  display: inline-block;
  min-width: 18px;
  margin-left: 5px;
  padding: 1px 5px;
  background: var(--orange);
  color: var(--ink-deep);
  font: 700 11px/1.5 var(--mono);
  text-align: center;
}

.admin-main { padding-block: 40px 80px; }
.admin-main .shell { width: min(1100px, calc(100% - 40px)); }

.admin-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.admin-head h1 { margin: 0; font-size: clamp(30px, 4vw, 42px); letter-spacing: -.06em; }
.admin-head p { margin: 8px 0 0; color: var(--ink-mute); font-size: 15px; }

.panel { padding: 26px; background: #fff; border: 1px solid var(--line); }
.panel + .panel { margin-top: 20px; }
.panel h2 { margin-bottom: 6px; font-size: 20px; letter-spacing: -.04em; }
.panel .panel-intro { margin-bottom: 22px; color: var(--ink-mute); font-size: 14px; }

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-bottom: 26px; }
.tile { padding: 22px; background: #fff; border: 1px solid var(--line); }
.tile b { display: block; font-size: 34px; letter-spacing: -.06em; line-height: 1.1; }
.tile span { color: var(--ink-mute); font: 500 10px/1.6 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.tile.accent { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tile.accent span { color: #b1cac2; }

table.data { width: 100%; border-collapse: collapse; font-size: 14px; }
table.data th, table.data td { padding: 13px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
table.data th { color: var(--ink-mute); font: 500 10px/1.6 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
table.data tr:last-child td,
table.data tr:last-child th { border-bottom: 0; }
table.data .row-title { font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
table.data .row-sub { display: block; color: var(--ink-mute); font-size: 13px; font-weight: 400; }
table.data td.right { text-align: right; white-space: nowrap; }

/* Tabel met een naam links en een waarde rechts, voor de controlepagina. */
table.data.pairs th {
  width: 44%;
  color: var(--ink);
  font: 700 13px/1.5 var(--font);
  letter-spacing: 0;
  text-transform: none;
  vertical-align: top;
}
table.data.pairs td { font-size: 14px; }
table.data td.right > a,
table.data td.right > form,
table.data td.right > .pill { margin-left: 14px; }
table.data td.right > a:first-child,
table.data td.right > form:first-child,
table.data td.right > .pill:first-child { margin-left: 0; }

.thumb-mini {
  width: 62px;
  height: 42px;
  padding: 3px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}
.thumb-mini.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-deep);
  color: var(--ink-mute);
  font: 700 13px/1 var(--font);
}

.pill {
  display: inline-block;
  padding: 3px 9px;
  font: 700 11px/1.7 var(--font);
  letter-spacing: .01em;
}
.pill-on { background: #dff0e6; color: #1d6b45; }
.pill-off { background: var(--paper-deep); color: var(--ink-mute); }
.pill-new { background: var(--orange); color: var(--ink-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.button-sm { min-height: 40px; padding: 10px 15px; font-size: 13px; }
.link-danger { color: var(--red); font-size: 13px; font-weight: 700; }
.link-danger:hover { text-decoration: underline; }
.link-plain { font-size: 13px; font-weight: 700; }
.link-plain:hover { color: var(--orange); }

.order-buttons { display: inline-flex; gap: 4px; }
.order-buttons button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}
.order-buttons button:hover { border-color: var(--ink); }
.order-buttons button[disabled] { opacity: .35; cursor: default; }

.image-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding: 12px;
  background: var(--paper-deep);
}
.image-preview img {
  width: 140px;
  height: 94px;
  padding: 6px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.checkbox input { width: 18px; height: 18px; margin-top: 2px; flex: none; }
.checkbox label { font-size: 14px; font-weight: 700; }
.checkbox .hint { display: block; font-weight: 400; }

.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 30px 20px;
  background: var(--ink);
}
.login-box { width: min(420px, 100%); padding: 36px; background: var(--paper); }
.login-box h1 { margin-bottom: 6px; font-size: 30px; letter-spacing: -.06em; }
.login-sub { margin-bottom: 26px; color: var(--ink-mute); font-size: 14px; }
.button-block { width: 100%; }

.message-detail { display: grid; grid-template-columns: 1.3fr .7fr; gap: 24px; }
.message-body { white-space: pre-wrap; font-size: 16px; line-height: 1.65; }

.admin-empty { padding: 30px; background: var(--paper-deep); color: var(--ink-soft); font-size: 15px; }

/* ---------------------------------------------------------- schermbreedte -- */

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-body, .contact-grid, .message-detail, .duo, .faq-item { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 36px, 680px); }
  .header-inner { min-height: 76px; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 10px 0 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(100% - 36px, 680px);
    margin-inline: auto;
    font-size: 16px;
  }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav a { display: block; padding: 15px 0; }
  .nav-cta { border-bottom: 0; }
  .nav-cta a { padding-top: 20px; }

  .hero, .cards, .process, .package, .contact-cta, .page-hero, .project-hero { grid-template-columns: 1fr; }
  .hero { padding-block: 40px 60px; gap: 40px; }
  .page-hero, .project-hero { gap: 24px; align-items: start; }
  .visual { min-height: 410px; }
  .statement { grid-template-columns: 1fr; gap: 22px; }
  .process { gap: 46px; }
  .package { gap: 40px; }
  .contact-cta { gap: 34px; }
  .facts > div { grid-template-columns: 120px 1fr; }
  .band { flex-direction: column; align-items: flex-start; }
  .project-nav { grid-template-columns: 1fr; }
  .project-nav-item.is-next { text-align: left; }
  .project-nav-item.is-next .project-nav-label { justify-content: flex-start; }
  .admin-nav { width: 100%; margin-left: 0; }
  .tiles { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  /* Brede tabellen mogen op een smal scherm zijwaarts schuiven. */
  .panel { overflow-x: auto; }
  table.data { min-width: 560px; }
}

@media (max-width: 560px) {
  .announcement { justify-content: flex-start; font-size: 8.5px; text-align: left; }
  .brand { font-size: 24px; }
  h1 { font-size: clamp(38px, 12vw, 56px); }
  .hero-intro, .page-intro { font-size: 16px; }
  .actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .actions .button { width: 100%; }
  .visual { min-height: 370px; }
  .orbit.a { width: 230px; height: 230px; }
  .orbit.b { width: 330px; height: 180px; }
  .center { width: 140px; height: 140px; }
  .center strong { font-size: 21px; }
  .node { width: 65px; height: 65px; font-size: 7px; }
  .node.a { top: 115px; left: 30px; }
  .node.b { top: 110px; right: 25px; }
  .node.c { bottom: 36px; left: 72px; width: 55px; height: 55px; }
  .label.top { top: 30px; left: 26px; font-size: 7px; }
  .label.bottom { right: 24px; bottom: 27px; font-size: 7px; }
  .proof { flex-direction: column; align-items: flex-start; gap: 12px; }
  .proof i { width: 100%; flex: none; }
  .proof p { white-space: normal; }
  .card { min-height: 0; padding: 23px; }
  .cardfoot { flex-direction: column; align-items: flex-start; gap: 14px; }
  .statement .big { font-size: 27px; }
  .work-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-block: 44px 30px; }
  .facts > div { grid-template-columns: 1fr; gap: 2px; }
  .login-box { padding: 26px 22px; }
  table.data th, table.data td { padding: 11px 8px; }
  .image-preview { flex-direction: column; align-items: flex-start; }
}
