/* ============================================================
   GijzenDMA Learn — learn.gijzendma.com
   Light theme variant of the GijzenDMA brand system.
   Shared stylesheet for the homepage + course landing page.
   Pure CSS. No framework. Accordions use native <details>.
   ============================================================ */

/* ---------- Self-hosted webfonts ---------- */
@font-face {
  font-family: 'PT Serif';
  font-weight: 400; font-style: normal; font-display: swap;
  src: url('fonts/PTSerif-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'PT Serif';
  font-weight: 700; font-style: normal; font-display: swap;
  src: url('fonts/PTSerif-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'PT Serif';
  font-weight: 400; font-style: italic; font-display: swap;
  src: url('fonts/PTSerif-Italic.ttf') format('truetype');
}
@font-face {
  font-family: 'PT Serif';
  font-weight: 700; font-style: italic; font-display: swap;
  src: url('fonts/PTSerif-BoldItalic.ttf') format('truetype');
}
@font-face {
  font-family: 'Encode Sans Expanded';
  font-weight: 400; font-style: normal; font-display: swap;
  src: url('fonts/EncodeSansExpanded-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Encode Sans Expanded';
  font-weight: 500; font-style: normal; font-display: swap;
  src: url('fonts/EncodeSansExpanded-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Encode Sans Expanded';
  font-weight: 700; font-style: normal; font-display: swap;
  src: url('fonts/EncodeSansExpanded-Bold.ttf') format('truetype');
}

/* ---------- Tokens ---------- */
:root {
  /* Light-theme surfaces — warm ivory ground */
  --bg:            #FBF7F0;   /* warm ivory page ground */
  --surface:       #FFFFFF;   /* cards, elevated panels */
  --surface-muted: #F3ECE0;   /* B2B block, coming-soon cards — warm beige */
  --surface-sunk:  #F6F1E8;   /* alternating section bg, subtle */

  /* Brand palette (unchanged from GijzenDMA system) */
  --dark-blue:  #0D3B7C;      /* all headings */
  --ice-blue:   #23A8E2;      /* interactive accent: eyebrow rule, focus, hover */
  --deep-teal:  #1A7EAA;      /* = ice-140. Primary CTA fill (AA-safe with white) */
  --deep-teal-hover: #15577F;
  --oranje:     #F79D32;      /* single warm accent per section (decorative) */
  --oranje-tint:#FDF0E0;

  /* Ink (warm-neutral text on ivory) */
  --ink:        #23282D;                  /* body */
  --ink-soft:   rgba(35,40,45,0.68);      /* secondary body, meta */
  --ink-muted:  rgba(35,40,45,0.52);      /* captions, scope notes */

  /* Lines & elevation */
  --border:        rgba(45,35,20,0.12);   /* warm hairline */
  --border-strong: rgba(45,35,20,0.20);
  --shadow-card:   0 1px 3px rgba(45,32,12,0.05), 0 10px 28px -10px rgba(45,32,12,0.12);
  --shadow-lift:   0 2px 6px rgba(45,32,12,0.07), 0 18px 44px -12px rgba(45,32,12,0.18);

  /* Type */
  --serif: 'PT Serif', Georgia, 'Times New Roman', serif;
  --sans:  'Encode Sans Expanded', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --tracking-label:   0.08em;
  --tracking-eyebrow: 0.10em;

  /* Spacing & layout */
  --container-max: 1200px;
  --container-pad: 56px;
  --reading-max: 720px;
  --radius-tag: 3px;
  --radius-button: 4px;
  --radius-card: 8px;

  /* Motion */
  --t-fast: 120ms ease-out;
  --t-base: 200ms ease-out;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font: inherit; }
a { color: var(--dark-blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--deep-teal); }
::selection { background: rgba(35,168,226,0.22); color: var(--dark-blue); }
:focus-visible { outline: 2px solid var(--ice-blue); outline-offset: 3px; border-radius: 2px; }

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-sunk { background: var(--surface-sunk); }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.reading { max-width: var(--reading-max); }

/* ---------- Type helpers ---------- */
.h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(38px, 5vw, 56px); line-height: 1.08; letter-spacing: -0.01em; color: var(--dark-blue); margin: 0; }
.h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(28px, 3.2vw, 38px); line-height: 1.16; letter-spacing: -0.005em; color: var(--dark-blue); margin: 0; text-wrap: balance; }
.h3 { font-family: var(--serif); font-weight: 700; font-size: 23px; line-height: 1.28; color: var(--dark-blue); margin: 0; }
.h4 { font-family: var(--serif); font-weight: 700; font-size: 19px; line-height: 1.32; color: var(--dark-blue); margin: 0; }
.lede { font-family: var(--serif); font-size: 21px; line-height: 1.55; color: var(--ink-soft); margin: 0; max-width: 58ch; }
.body { font-family: var(--serif); font-size: 17px; line-height: 1.72; color: var(--ink); margin: 0; max-width: 66ch; }
.body-soft { color: var(--ink-soft); }
.note { font-family: var(--sans); font-size: 13px; line-height: 1.55; color: var(--ink-muted); }
.meta { font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.01em; }

/* ---------- Eyebrow (brand signature: 28px ice rule + label) ---------- */
.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--dark-blue);                 /* label deepened for AA on light */
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--ice-blue); }
.eyebrow.center { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  border-radius: var(--radius-button); padding: 13px 24px;
  border: 1px solid transparent; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
  text-decoration: none; white-space: nowrap;
}
.btn .arrow { font-size: 14px; line-height: 1; }
.btn-primary { background: var(--deep-teal); color: #fff; }
.btn-primary:hover { background: var(--deep-teal-hover); color: #fff; }
.btn-ghost { background: transparent; color: var(--dark-blue); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--deep-teal); color: var(--deep-teal); }
.btn-lg { padding: 16px 30px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Tag / badge ---------- */
.tag {
  font-family: var(--sans); font-weight: 700; font-size: 10px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  border-radius: var(--radius-tag); padding: 5px 10px; border: 1px solid var(--border-strong);
  color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px;
}
.badge-live { color: var(--dark-blue); border-color: rgba(247,157,50,0.5); background: var(--oranje-tint); }
.badge-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--oranje); }
.badge-soon { color: var(--ink-muted); border-color: var(--border-strong); background: transparent; }

/* ---------- Header / nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,240,0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 16px var(--container-pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

/* ---------- Logo lockup ---------- */
.lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.lockup .mark { width: 22px; height: 44px; flex-shrink: 0; }
.lockup .mark rect { fill: var(--dark-blue); }
.lockup .word {
  font-family: var(--serif); font-weight: 700; font-size: 22px; line-height: 1;
  letter-spacing: -0.4px; color: var(--dark-blue);
}
.lockup .word .dma { color: var(--ice-blue); }
.lockup .sub {
  font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft);
  padding-left: 12px; margin-left: 2px; border-left: 1px solid var(--border-strong);
  align-self: center;
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 72px; }
.hero .lede { margin: 24px 0 0; }
.hero-cta-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 36px; }

/* ---------- Course catalog ---------- */
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.course-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 34px; display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.course-card.is-live { box-shadow: var(--shadow-card); }
.course-card.is-live:hover { box-shadow: var(--shadow-lift); border-color: var(--border-strong); transform: translateY(-2px); }
.course-card.is-soon { background: var(--surface-muted); border-style: dashed; }
.course-card.is-soon .course-title, .course-card.is-soon .body { opacity: 0.72; }
.course-card .card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.course-card .course-title { font-family: var(--serif); font-weight: 700; font-size: 25px; line-height: 1.22; color: var(--dark-blue); margin: 0; }
.course-card .course-meta { font-family: var(--sans); font-size: 12px; color: var(--ink-soft); letter-spacing: 0.01em; line-height: 1.5; }
.course-card .body { font-size: 16px; }
.course-card .card-foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.course-card .price { font-family: var(--serif); font-weight: 700; font-size: 20px; color: var(--dark-blue); }
.course-card .price .pre { font-family: var(--sans); font-weight: 700; font-size: 10px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--ink-muted); display: block; margin-bottom: 2px; }

/* ---------- Why pillars (icon-free: number + eyebrow rule) ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.pillar { display: flex; flex-direction: column; gap: 12px; }
.pillar .num {
  font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--dark-blue); display: inline-flex; align-items: center; gap: 12px;
}
.pillar .num::before { content: ""; width: 28px; height: 1px; background: var(--ice-blue); }
.pillar h3 { margin-top: 4px; }

/* ---------- In-company B2B block ---------- */
.bizblock {
  background: var(--surface-muted); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 48px 52px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center;
}
.bizblock .body { max-width: 60ch; }
.bizblock h3 { margin-bottom: 12px; }

/* ---------- Stats bar ---------- */
.stats-bar {
  display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center;
  font-family: var(--sans); font-size: 12.5px; font-weight: 500; color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.stats-bar .sep { color: var(--border-strong); }
.stats-bar.boxed {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 18px 26px; box-shadow: var(--shadow-card);
}

/* ---------- Hero visual placeholder ---------- */
.visual-ph {
  background:
    repeating-linear-gradient(45deg, rgba(13,59,124,0.03) 0 14px, transparent 14px 28px),
    var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-label);
  text-transform: uppercase; color: var(--ink-muted); text-align: center; padding: 24px;
  aspect-ratio: 16 / 10;
}
.visual-ph .mark-ph { width: 26px; height: 52px; opacity: 0.4; }
.visual-ph .mark-ph rect { fill: var(--dark-blue); }

/* ---------- Generic two-col split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }

/* ---------- Lists (pain / outcome / for-who) ---------- */
.lead-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.lead-list li { position: relative; padding-left: 30px; font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--ink); }
.lead-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 14px; height: 1px; background: var(--ice-blue); }
.lead-list.check li::before { content: "✓"; top: 0; width: auto; height: auto; background: none; color: var(--deep-teal); font-family: var(--sans); font-weight: 700; font-size: 13px; }
.lead-list.cross li::before { content: "—"; top: 0; width: auto; height: auto; background: none; color: var(--ink-muted); font-family: var(--sans); font-weight: 700; font-size: 13px; }
.bridge-line { font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.5; color: var(--dark-blue); margin: 32px 0 0; }

/* ---------- For-who two columns ---------- */
.forwho-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.forwho-col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 32px 34px; }
.forwho-col.is-not { background: var(--surface-muted); }
.forwho-col h3 { font-size: 18px; margin-bottom: 8px; }

/* ---------- Curriculum / FAQ accordion (native <details>) ---------- */
.accordion { border-top: 1px solid var(--border); }
.accordion details { border-bottom: 1px solid var(--border); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 26px 8px 26px 0;
  display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: baseline;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion .mod-num { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--deep-teal); padding-top: 4px; }
.accordion .mod-title { font-family: var(--serif); font-weight: 700; font-size: 21px; line-height: 1.3; color: var(--dark-blue); }
.accordion .mod-lessons { font-family: var(--sans); font-size: 12px; color: var(--ink-muted); white-space: nowrap; padding-top: 4px; }
.accordion .chevron { font-family: var(--sans); font-size: 18px; color: var(--ice-blue); transition: transform var(--t-base); line-height: 1; padding-top: 2px; }
.accordion details[open] .chevron { transform: rotate(45deg); }
.accordion .mod-body { padding: 0 40px 28px 52px; }
.accordion .mod-body .body { font-size: 16px; color: var(--ink-soft); }

/* FAQ variant — simpler two-col summary */
.faq summary { grid-template-columns: 1fr auto; }
.faq .q { font-family: var(--serif); font-weight: 700; font-size: 19px; line-height: 1.35; color: var(--dark-blue); }
.faq .faq-body { padding: 0 40px 26px 0; }

/* ---------- CTA block (course landing) ---------- */
.cta-block {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift); padding: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.price-display { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 18px 0 6px; }
.price-display .now { font-family: var(--serif); font-weight: 700; font-size: 52px; line-height: 1; color: var(--dark-blue); letter-spacing: -0.01em; }
.price-display .was { font-family: var(--serif); font-size: 24px; color: var(--ink-muted); text-decoration: line-through; }
.price-display .tagprice { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--dark-blue); background: var(--oranje-tint); border: 1px solid rgba(247,157,50,0.5); border-radius: var(--radius-tag); padding: 5px 10px; }
.limited { font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; }
.limited .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--oranje); }
.incl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.incl-list li { position: relative; padding-left: 28px; font-family: var(--serif); font-size: 16px; line-height: 1.5; color: var(--ink); }
.incl-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--deep-teal); font-family: var(--sans); font-weight: 700; font-size: 13px; }
.reassure { font-family: var(--sans); font-size: 12.5px; color: var(--ink-muted); margin-top: 16px; }
.incompany-link { font-family: var(--sans); font-size: 13px; margin-top: 14px; }

/* ---------- Trust signals ---------- */
.trust-list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.trust-list li { position: relative; padding-left: 30px; font-family: var(--sans); font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.trust-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 16px; height: 2px; background: var(--oranje); }

/* ---------- Authority close ---------- */
.author-close { text-align: center; max-width: 680px; margin: 0 auto; }
.author-close .body { margin: 0 auto 20px; }

/* ---------- Footer ---------- */
.footer { background: var(--surface-muted); border-top: 1px solid var(--border); padding: 56px 0 40px; margin-top: 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .lockup .word { font-size: 19px; }
.footer .lockup .mark { width: 18px; height: 36px; }
.footer-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; font-family: var(--sans); font-size: 13px; }
.footer-links a { color: var(--ink-soft); }
.footer-links a:hover { color: var(--dark-blue); }
.footer-legal { font-family: var(--sans); font-size: 12px; color: var(--ink-muted); }

/* ---------- Cookie banner (placeholder) ---------- */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 200;
  max-width: 720px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-card);
  box-shadow: var(--shadow-lift); padding: 20px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner .ck-text { font-family: var(--sans); font-size: 13px; color: var(--ink-soft); flex: 1; min-width: 240px; line-height: 1.5; }
.cookie-banner .ck-actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 10px 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  :root { --container-pad: 24px; }
  .section { padding: 64px 0; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; gap: 32px; }
  .bizblock { grid-template-columns: 1fr; gap: 24px; padding: 36px; }
  .forwho-grid { grid-template-columns: 1fr; }
  .cta-block { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .nav-cta-label-long { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .lockup .sub { display: none; }
  .accordion summary { grid-template-columns: auto 1fr; }
  .accordion .mod-lessons { grid-column: 2; padding-top: 0; }
  .accordion .chevron { display: none; }
  .price-display .now { font-size: 42px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================================
   ADDITIONS — legal pages, EN/NL switch, contact form, about.
   New selectors only; nothing above this line is modified.
   ============================================================ */

/* ---------- Logo image (real GijzenDMA lockup) ---------- */
.lockup .logo-img { height: 30px; width: auto; display: block; }
.footer .lockup .logo-img { height: 24px; }

/* ---------- EN/NL language switch ---------- */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; }
.lang-btn {
  font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-label); text-transform: uppercase;
  color: var(--ink-muted); background: none; border: 0; cursor: pointer;
  padding: 6px 8px; border-radius: 3px; line-height: 1;
  transition: color var(--t-fast);
}
.lang-btn:hover { color: var(--dark-blue); }
.lang-btn.is-active { color: var(--dark-blue); }
.lang-sep { color: var(--border-strong); font-family: var(--sans); font-size: 11px; }

/* ---------- Placeholder fields (visible during dev) ---------- */
.placeholder {
  background: rgba(247,157,50,0.16); color: #8a5410;
  border-bottom: 1px dashed rgba(247,157,50,0.7);
  padding: 0 3px; border-radius: 2px;
  font-family: var(--sans); font-size: 0.9em; font-weight: 700;
}

/* ---------- Legal / long-form document ---------- */
.legal-doc { max-width: var(--reading-max); }
.legal-doc h2 { font-family: var(--serif); font-weight: 700; font-size: 24px; line-height: 1.3; color: var(--dark-blue); margin: 44px 0 14px; }
.legal-doc h3 { font-family: var(--serif); font-weight: 700; font-size: 19px; line-height: 1.35; color: var(--dark-blue); margin: 32px 0 10px; }
.legal-doc p { font-family: var(--serif); font-size: 17px; line-height: 1.72; color: var(--ink); margin: 0 0 18px; max-width: none; }
.legal-doc p.intro { font-size: 19px; color: var(--ink-soft); }
.legal-doc ul { font-family: var(--serif); font-size: 17px; line-height: 1.7; color: var(--ink); padding-left: 22px; margin: 0 0 20px; }
.legal-doc li { margin-bottom: 8px; }
.legal-doc strong { color: var(--dark-blue); }
.legal-doc a { text-decoration: underline; }
.legal-doc hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }

/* Legal tables — warm brand styling */
.legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; }
.legal-table th, .legal-table td {
  text-align: left; padding: 14px 18px; border: 1px solid var(--border);
  font-family: var(--serif); font-size: 15.5px; line-height: 1.5; color: var(--ink); vertical-align: top;
}
.legal-table th {
  font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--dark-blue);
  background: var(--surface-muted);
}
.legal-table tr:nth-child(even) td { background: rgba(45,35,20,0.02); }

/* Imprint definition blocks (EN + NL shown together) */
.imprint-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.imprint-block { margin-bottom: 4px; }
.imprint-block .k { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--dark-blue); margin: 18px 0 4px; }
.imprint-block .v { font-family: var(--serif); font-size: 17px; line-height: 1.6; color: var(--ink); }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 40px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--dark-blue); margin-bottom: 8px; }
.field label .opt { color: var(--ink-muted); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--radius-button);
  padding: 13px 14px; color: var(--ink); font-family: var(--sans); font-size: 14px; outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.field textarea { font-family: var(--serif); font-size: 16px; line-height: 1.6; min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ice-blue); box-shadow: 0 0 0 3px rgba(35,168,226,0.18); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D3B7C' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.contact-direct { background: var(--surface-muted); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px 32px; }
.contact-direct .label { font-family: var(--sans); font-weight: 700; font-size: 11px; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--dark-blue); margin-bottom: 10px; }

@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .imprint-cols { grid-template-columns: 1fr; gap: 0; }
}
