/* aishadutrieux.nl — één stylesheet. Kleuren en typografie volgens bouwbrief 1.4. */

:root {
  --creme: #F6F0E4;
  --beige: #EDE3CF;
  --ink: #1F1B17;
  --ink-soft: #4A433C;
  --muted: #6F675E;
  --oker: #B8891C;        /* lijnen, onderstrepingen, accenten */
  --oker-text: #7F5D0E;   /* oker voor tekst: 5,3:1 op crème, 4,8:1 op beige (WCAG AA) */
  --footer: #1E1A17;
  --card: #FBF8F2;
  --border: #E5DCC8;
  --border-strong: #CFC4AC;
  --white: #FFFFFF;

  --serif: "EB Garamond", Garamond, "Times New Roman", serif;
  --display: "Newsreader", "Times New Roman", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 5.6vw, 72px);
  --max: 1280px;
  --measure: 34em; /* ± 70 tekens bij 19 px Garamond */
  --section: clamp(64px, 9vw, 112px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong, b { font-weight: 600; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--ink); color: var(--creme); padding: 8px 14px;
  font-family: var(--sans); font-size: 13px;
}
.skip:focus { left: 8px; }

.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Typografie ---------- */

h1, h2, h3, h4 { margin: 0; font-weight: 400; }

h1, .h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 72;
  margin-bottom: 0.35em;
}
h2, .h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72;
  margin-bottom: 0.4em;
}
h1 em, h2 em, .h1 em, .h2 em { font-style: italic; font-weight: 400; }

h3, .h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 0.4em;
}

.lede { font-size: 22px; line-height: 1.5; max-width: var(--measure); color: var(--ink); }
.lede--narrow { max-width: 28em; }
.prose { max-width: var(--measure); }
.prose p + p { margin-top: 1em; }
.small { font-family: var(--sans); font-size: 13px; line-height: 1.55; color: var(--muted); }
.small a { color: var(--ink); text-decoration-color: var(--oker); }
.note { font-style: italic; color: var(--ink-soft); max-width: var(--measure); }
.note--small { font-size: 16.5px; }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--oker-text);
  margin: 0 0 22px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--oker); }
.eyebrow--plain::before { display: none; }

.subtitle { font-size: 22px; color: var(--ink-soft); margin: -0.2em 0 1em; }
.meta { font-family: var(--sans); font-size: 13px; color: var(--muted); letter-spacing: 0.01em; }

/* ---------- Knoppen en links ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 17px 26px; line-height: 1;
  border: 1px solid var(--ink); color: var(--ink); background: transparent;
  cursor: pointer; transition: background .15s, color .15s;
}
.btn:hover { background: var(--ink); color: var(--creme); }
.btn--primary { background: var(--ink); color: var(--creme); }
.btn--primary:hover { background: #000; border-color: #000; }
.btn--light { border-color: var(--creme); color: var(--creme); }
.btn--light:hover { background: var(--creme); color: var(--ink); }
.btn--small { padding: 10px 14px; font-size: 11px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 32px; }
.actions--stack { flex-direction: column; align-items: flex-start; }

.arrow {
  display: inline-block;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  color: var(--ink); padding-bottom: 5px;
  border-bottom: 1px solid var(--oker);
}
.arrow::after { content: " →"; }
.arrow:hover { color: var(--oker); }
.arrow--inline { margin-left: 14px; }
.arrow--light { color: var(--creme); }
.arrow--light:hover { color: var(--oker); }

.textlink { color: var(--ink); text-decoration: underline; text-decoration-color: var(--oker); text-underline-offset: 3px; }
.textlink:hover { color: var(--oker); }

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

.site-header {
  background: var(--creme);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 20;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 24px;
}
.wordmark {
  font-family: var(--serif); font-weight: 600; font-size: 21px;
  text-decoration: none; color: var(--ink); letter-spacing: -0.005em; margin: 0;
}
.wordmark__dot { color: var(--oker); }
.wordmark--footer { color: var(--creme); }

.site-nav ul { display: flex; gap: 30px; }
.site-nav a {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  color: var(--ink-soft); padding: 8px 0; display: inline-block;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--oker); }

.nav-toggle {
  display: none; background: none; border: 0; padding: 10px; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink);
  position: absolute; left: 11px; transition: transform .2s, opacity .2s;
}
.nav-toggle__bar { top: 21px; }
.nav-toggle__bar::before { top: -7px; left: 0; }
.nav-toggle__bar::after { top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--creme); border-bottom: 1px solid var(--border);
    padding: 12px var(--gutter) 24px;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav a { display: block; padding: 12px 0; font-size: 13px; border-bottom: 1px solid var(--border); }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--oker); }
}

/* ---------- Secties en lay-out ---------- */

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--beige { background: var(--beige); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--hero { padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 104px); }
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.grid-2--top { align-items: start; }
.grid-2--wide-left { grid-template-columns: 1.15fr 1fr; }
.grid-2--wide-right { grid-template-columns: 1fr 1.2fr; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

@media (max-width: 860px) {
  .grid-2, .grid-2--wide-left, .grid-2--wide-right { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2-cards { grid-template-columns: 1fr; }
}

/* ---------- Hero ---------- */

.hero { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.hero__tagline {
  display: flex; gap: 16px; align-items: flex-start;
  font-family: var(--display); font-size: clamp(22px, 2.4vw, 27px);
  line-height: 1.3; margin: 8px 0 28px; max-width: 24em;
  font-variation-settings: "opsz" 36;
}

/* Citaat als gezagsargument (Home) */
.pull { text-align: center; padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid var(--border); }
.pull p { font-family: var(--display); font-size: clamp(24px, 2.8vw, 34px); line-height: 1.25; max-width: 26em; margin: 0 auto; font-variation-settings: "opsz" 72; }
.pull cite { display: block; font-style: normal; font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--oker-text); margin-top: 18px; }
.hero__tagline::before { content: ""; flex: none; width: 32px; height: 1px; background: var(--oker); margin-top: 0.75em; }
.hero__body { max-width: var(--measure); }
.proof {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; color: var(--muted);
  margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 6px 10px;
}
.proof li:not(:last-child)::after { content: "·"; margin-left: 10px; color: var(--oker); }
@media (min-width: 700px) { .proof li { white-space: nowrap; } }
.hero > *, .grid-2 > *, .grid-3 > *, .grid-2-cards > * { min-width: 0; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero__photo { order: -1; max-width: 420px; }
}

/* Foto's met offset-rand */
.frame { position: relative; display: block; }
.frame img { position: relative; z-index: 1; width: 100%; object-fit: cover; }
.frame::after {
  content: ""; position: absolute; z-index: 0;
  inset: 16px -16px -16px 16px; border: 1px solid var(--border-strong);
}
.frame--gold::after { inset: 24px -24px -24px 24px; border: 0; background: var(--oker); }
.frame--gold { margin-right: 24px; margin-bottom: 24px; }
.frame--thin { margin-right: 16px; margin-bottom: 16px; }
.frame__badge {
  position: absolute; z-index: 2; left: 0; bottom: 28px;
  background: var(--card); padding: 10px 16px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.credit { font-family: var(--sans); font-size: 12px; color: var(--muted); margin-top: 14px; letter-spacing: 0.02em; }
.frame + .credit { margin-top: 30px; }

/* ---------- Kaarten ---------- */

.card {
  background: var(--card); border: 1px solid var(--border);
  padding: clamp(28px, 3.2vw, 40px);
  display: flex; flex-direction: column; gap: 10px;
}
.card p { font-size: 17.5px; line-height: 1.55; }
.card .arrow { align-self: flex-start; margin-top: auto; padding-top: 12px; }
.card__label {
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 10px;
}
.card h3 { margin-bottom: 4px; }
.card--dark { background: var(--ink); color: var(--creme); border-color: var(--ink); }
.card--dark .card__label { color: var(--oker); }
.card--beige { background: var(--beige); color: var(--ink); border-color: var(--border-strong); }
.card--dark .eyebrow { color: var(--oker); }
.card--dark .arrow { color: var(--creme); }
.card .eyebrow { margin-bottom: 8px; }
.card address { font-style: normal; }
.card address a { text-decoration-color: var(--oker); text-underline-offset: 3px; }

.panel { background: var(--card); border: 1px solid var(--border); padding: clamp(28px, 3vw, 40px); }
.panel--dark { background: var(--ink); color: var(--creme); border-color: var(--ink); }
.panel--dark .eyebrow { color: var(--oker); }
.panel--dark .arrow { color: var(--creme); }
.panel--beige { background: var(--beige); border-color: var(--border-strong); }
.panel--sticky { position: sticky; top: 24px; }

.dashlist li { padding-left: 1.1em; text-indent: -1.1em; margin-bottom: 0.55em; font-size: 17.5px; line-height: 1.45; }
.dashlist li::before { content: "– "; }

/* ---------- Genummerde lijsten ---------- */

.numlist { border-top: 1px solid var(--border-strong); }
.numlist > li {
  display: grid; grid-template-columns: 76px 1fr; gap: 0 12px;
  padding: 30px 0 32px; border-bottom: 1px solid var(--border-strong);
}
.numlist .num { font-family: var(--sans); font-size: 12px; font-weight: 600; color: var(--oker-text); letter-spacing: 0.08em; padding-top: 9px; }
.numlist h3 { margin-bottom: 6px; }
.numlist p { max-width: var(--measure); font-size: 18px; color: var(--ink-soft); }
.numlist .arrow { margin-top: 14px; }
@media (max-width: 600px) { .numlist > li { grid-template-columns: 44px 1fr; } }

/* ---------- Tabel-lijsten (publicaties, media) ---------- */

.rows { border-top: 1px solid var(--border-strong); }
.rows > li {
  display: grid; grid-template-columns: 200px 1fr; gap: 12px 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border-strong);
}
.rows--compact > li { padding: 20px 0; }
.rows .src {
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--oker-text); line-height: 1.6; padding-top: 6px;
}
.rows .desc { color: var(--ink-soft); font-size: 18px; }
.rows .desc p { margin-bottom: 0.6em; }
.rows .links { margin: 4px 0 10px; }
.rows .links li { margin-bottom: 8px; }
.rows .links a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--oker); text-underline-offset: 4px; }
.rows .links a:hover { color: var(--oker); }
.rows .links .when { font-family: var(--sans); font-size: 12px; color: var(--muted); margin-left: 8px; white-space: nowrap; }
.rows .desc .arrow { margin-top: 4px; }
@media (max-width: 700px) {
  .rows > li { grid-template-columns: 1fr; gap: 6px; }
  .rows .src { padding-top: 0; }
}

/* ---------- Tijdlijn ---------- */

.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px; width: 1px; background: var(--border-strong); }
.timeline li { position: relative; padding-bottom: 36px; }
.timeline li::before {
  content: ""; position: absolute; left: -40px; top: 9px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--oker);
}
.timeline .year { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--oker-text); }
.timeline h3 { font-size: 21px; margin: 4px 0 2px; }
.timeline p { max-width: var(--measure); font-size: 18px; color: var(--ink-soft); }

/* ---------- Cijferblok ---------- */

.stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border-strong); }
.stats li { padding: 32px 28px; border-right: 1px solid var(--border-strong); }
.stats li:last-child { border-right: 0; }
.stats .n { font-family: var(--display); font-size: 40px; line-height: 1; display: block; margin-bottom: 12px; }
.stats .l { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; }
  .stats li { border-right: 0; border-bottom: 1px solid var(--border-strong); }
  .stats li:last-child { border-bottom: 0; }
}

/* ---------- Boeken ---------- */

.cover { display: block; }
.cover img { box-shadow: 0 18px 40px -18px rgba(31, 27, 23, .45), 0 2px 6px rgba(31, 27, 23, .12); }
.cover--tilt { transform: rotate(-2deg); background: var(--white); padding: 10px; box-shadow: 0 30px 60px -24px rgba(31, 27, 23, .5); }
.cover--tilt img { box-shadow: none; }

.bookrow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; }
/* Alle covers in exact dezelfde verhouding (2:3); afwijkende formaten worden gecentreerd bijgesneden */
.bookrow .cover img, .book .cover img { aspect-ratio: 2 / 3; width: 100%; height: auto; object-fit: cover; object-position: center; }
.bookrow a { text-decoration: none; color: var(--ink); }
.bookrow figcaption { font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; line-height: 1.4; }
.bookrow figure { margin: 0; }
@media (max-width: 1000px) { .bookrow { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .bookrow { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

.book { display: grid; grid-template-columns: 240px 1fr; gap: clamp(32px, 5vw, 52px); padding: clamp(40px, 5vw, 64px) 0; border-top: 1px solid var(--border-strong); align-items: start; }
.book:last-of-type { border-bottom: 1px solid var(--border-strong); }
.book__title { font-family: var(--display); font-size: 40px; line-height: 1.1; font-variation-settings: "opsz" 72; letter-spacing: -0.01em; margin: 6px 0 14px; }
.book .prose p { color: var(--ink-soft); }
.book .actions { margin-top: 24px; }
.book .meta { display: block; }
@media (max-width: 700px) { .book { grid-template-columns: 1fr; } .book .cover { max-width: 220px; } }

.feature { display: grid; grid-template-columns: 380px 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.feature__cover { padding: 10px 24px 10px 0; }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; } .feature__cover { max-width: 320px; } }

.quote { border-left: 2px solid var(--oker); padding: 6px 0 6px 18px; margin: 20px 0; }
.quote p { font-style: italic; font-size: 18.5px; margin: 0; }
.quote cite { font-style: normal; font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 6px; }
.quote p + p { margin-top: 10px; }

.tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; }
.tags li { font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--border-strong); padding: 9px 13px; background: rgba(255,255,255,.35); }

/* ---------- Strook ---------- */

.strip { text-align: center; font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.06em; color: var(--muted); padding: 28px 0; border-bottom: 1px solid var(--border); }
.strip .sep { color: var(--oker); margin: 0 10px; }
.strip strong { font-weight: 600; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; font-size: 11.5px; margin-right: 10px; }

/* ---------- Agenda ---------- */

.agenda { border-top: 1px solid var(--border-strong); }
.agenda li { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--border-strong); }
.agenda .date { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oker-text); padding-top: 6px; }
.agenda p { max-width: var(--measure); font-size: 18.5px; }
@media (max-width: 700px) { .agenda li { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- Bio's / kopieer ---------- */

.bio { background: var(--card); border: 1px solid var(--border); margin-bottom: 20px; }
.bio__head { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 24px; border-bottom: 1px solid var(--border); }
.bio__label { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.bio__body { padding: 24px; }
.bio__body p { font-size: 18px; line-height: 1.6; }
.copy-btn { min-width: 108px; }
.copy-btn.is-done { background: var(--oker); border-color: var(--oker); color: var(--ink); }

/* ---------- Persfoto's ---------- */

.photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.photos figure { margin: 0; }
.photos img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.photos figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-top: 12px; font-family: var(--sans); font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
.photos figcaption small { display: block; color: var(--muted); font-size: 11px; }
.photos figcaption a { color: var(--oker-text); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.photos figcaption a:hover { text-decoration: underline; }
@media (max-width: 900px) { .photos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .photos { grid-template-columns: repeat(2, 1fr); } }

.filelist li { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--border-strong); font-size: 18.5px; }
.filelist { border-top: 1px solid var(--border-strong); max-width: 42em; }
.filelist a { color: var(--ink); text-decoration: none; }
.filelist a:hover { color: var(--oker); }
.filelist .type { font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oker-text); white-space: nowrap; }

/* ---------- Formulier ---------- */

.form { display: grid; gap: 22px; }
.form__row { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field label .opt { font-weight: 400; letter-spacing: 0.04em; text-transform: none; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 18px; color: var(--ink);
  background: var(--card); border: 1px solid var(--border-strong); padding: 13px 14px;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231F1B17' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field textarea { min-height: 170px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--oker); outline-offset: 1px; border-color: var(--oker); }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__status { font-size: 18px; }
.form__status--ok { border-left: 2px solid var(--oker); padding-left: 16px; }
.form__status--error { color: #8A2A1E; }

/* ---------- Kaart-stapel contact ---------- */

.stack { display: grid; gap: 24px; }

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

.site-footer { background: var(--footer); color: var(--creme); margin-top: 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: clamp(56px, 7vw, 88px) 56px; }
.site-footer__about p { font-size: 17px; line-height: 1.55; color: #D9D0C0; max-width: 24em; }
.site-footer__about .wordmark { display: inline-block; margin-bottom: 14px; }
.footer-label { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--oker); margin-bottom: 18px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--creme); text-decoration: none; font-size: 18.5px; }
.footer-links a:hover { color: var(--oker); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px var(--gutter); border-top: 1px solid #3A332C; font-family: var(--sans); font-size: 12.5px; color: #A79E90; }
.site-footer__bottom a { color: var(--creme); text-decoration: none; }
.site-footer__bottom a:hover { color: var(--oker); }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Hulpjes ---------- */

.ratio-43 img { aspect-ratio: 4 / 3; }
.bookrow--2 { grid-template-columns: 1fr 1fr; gap: 32px; align-self: start; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 16px; } .mt-2 { margin-top: 32px; } .mt-3 { margin-top: 48px; } .mt-4 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 32px; }

/* ---------- Print (persmap, bio's) ---------- */

@media print {
  body { background: #fff; color: #000; font-size: 11pt; }
  .site-header, .site-footer, .btn, .actions, .nav-toggle, .skip, .copy-btn, .form { display: none !important; }
  .section, .section--beige, .section--hero { padding-block: 12pt; background: none; border: 0; }
  a { color: #000; text-decoration: none; }
  .photos { grid-template-columns: repeat(4, 1fr); }
  .card, .panel, .bio { border: 1px solid #999; background: none; }
  .eyebrow, .rows .src, .timeline .year, .agenda .date, .numlist .num { color: #000; }
}
.divider { border: 0; border-top: 1px solid var(--border-strong); margin: 0; }
.center { text-align: center; }
