/* =====================================================================
   Future Legacy — Stylesheet
   Versie: 1.0
   Palet: Steen + Oker
   Fonts: Newsreader (serif) + Plus Jakarta Sans (sans-serif)
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------------- */
:root {
  /* Kleuren — Steen + Oker palet */
  --ink:          #1C2C44;  /* Hoofdkleur: koppen, donkere secties, footer */
  --paper:        #F4EFE5;  /* Warme achtergrond: hero, secties */
  --paper-soft:   #EBE3D2;  /* Cards op paper-secties */
  --accent:       #8B8276;  /* Middentint: eyebrows, italic, CTA-blok */
  --body:         #5D6470;  /* Lichaamstekst */
  --gold:         #B8922A;  /* Highlight: live-badges, links in tool-cards */
  --line:         rgba(28, 44, 68, 0.10);  /* Subtiele scheidslijnen */
  --white:        #FFFFFF;

  /* Tekst op donkere achtergrond */
  --on-ink-h:     #F4EFE5;  /* Koppen op ink */
  --on-ink-text:  rgba(244, 239, 229, 0.82);  /* Body op ink */
  --on-ink-mute:  rgba(244, 239, 229, 0.55);  /* Subtekst op ink */

  /* Typografie */
  --serif:  'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing en layout */
  --container-max: 1180px;
  --container-narrow: 720px;
  --container-pad: clamp(20px, 4vw, 48px);
  --section-pad-y: clamp(64px, 8vw, 120px);

  /* Radius en overig */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 1px 2px rgba(28, 44, 68, 0.04), 0 4px 12px rgba(28, 44, 68, 0.06);
  --shadow-lift: 0 4px 8px rgba(28, 44, 68, 0.08), 0 16px 32px rgba(28, 44, 68, 0.10);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------------------
   2. RESET & BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--gold); }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------------------------------------------------------------------
   3. TYPOGRAFIE
   --------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1.07;
  font-weight: 400;
}

h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
}

h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}

p { margin: 0 0 1em; }

.lead {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  color: var(--body);
  max-width: 38em;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 12px;
  margin-bottom: 3px;
}

.meta {
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 8px;
}

/* ---------------------------------------------------------------------
   4. LAYOUT — CONTAINERS
   --------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------------------------------------------------------------------
   5. SECTIES — ACHTERGRONDEN
   --------------------------------------------------------------------- */
section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

.section--paper     { background: var(--paper); }
.section--white     { background: var(--white); }
.section--ink       { background: var(--ink); color: var(--on-ink-text); }
.section--accent    { background: var(--accent); color: var(--white); }
.section--soft      { background: var(--paper-soft); }

.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--accent h1,
.section--accent h2,
.section--accent h3 { color: var(--on-ink-h); }

.section--ink .eyebrow,
.section--accent .eyebrow { color: var(--on-ink-mute); }

.section--ink .eyebrow::before,
.section--accent .eyebrow::before { background: var(--on-ink-mute); }

/* ---------------------------------------------------------------------
   6. HEADER (sticky navigatie)
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 229, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.site-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}
.site-logo em {
  color: var(--gold);
  font-style: normal;
  transition: color var(--t-fast);
}
.site-logo:hover { color: var(--gold); }
.site-logo:hover em { color: var(--ink); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  transition: color var(--t-fast);
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--ink); }

.site-nav .btn { padding: 10px 20px; }
.site-nav a.btn--primary { color: var(--paper); }
.site-nav a.btn--primary:hover { color: var(--paper); }

/* Taaltoggle NL / EN */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
}
.lang-toggle button {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  background: transparent;
  color: var(--accent);
  padding: 5px 11px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  transition: background var(--t-fast), color var(--t-fast);
}
.lang-toggle button:hover { color: var(--ink); }
.lang-toggle button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ---------------------------------------------------------------------
   7. KNOPPEN
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--t-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: #2a3b5a;
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--on-dark {
  background: var(--paper);
  color: var(--ink);
}
.btn--on-dark:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------------
   8. HERO (homepage)
   --------------------------------------------------------------------- */
.hero {
  background: var(--paper);
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__content { max-width: 640px; }

.hero h1 {
  margin: 0 0 24px;
}

.hero .claim {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--accent);
  margin: 24px 0 32px;
  line-height: 1.4;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.portrait-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  width: 260px;
  margin-left: auto;
}
.portrait-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.portrait-card--square img {
  aspect-ratio: 1 / 1;
}
.portrait-card__body {
  padding: 16px 18px;
}
.portrait-card__name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 4px;
}
.portrait-card__role {
  font-size: 13px;
  color: var(--body);
  margin: 0 0 8px;
}
.portrait-card__loc {
  font-size: 12px;
  color: var(--accent);
  margin: 0;
}
.portrait-card__loc a { color: var(--gold); }

/* ---------------------------------------------------------------------
   9. STRIP (donkere statistiek-balk)
   --------------------------------------------------------------------- */
.strip {
  background: var(--ink);
  color: var(--on-ink-text);
  padding: 36px 0;
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 24px);
  flex-wrap: wrap;
  text-align: center;
}
.strip__stat {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 25px);
  color: var(--paper);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.strip__stat strong {
  font-weight: 500;
  color: var(--gold);
}
.strip__divider {
  width: 1px;
  height: 32px;
  background: rgba(244, 239, 229, 0.25);
  flex-shrink: 0;
}
.strip__theme {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-ink-text);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .strip__inner { flex-direction: column; gap: 12px; }
  .strip__divider { display: none; }
}

/* ---------------------------------------------------------------------
   10. KLANTNAMEN
   --------------------------------------------------------------------- */
.clients {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.clients__list li {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------------
   11. ALGEMENE SECTIE-HEADERS
   --------------------------------------------------------------------- */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  font-size: 17px;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   12. SPLIT LAYOUT (Over-mij-teaser)
   --------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.split__content h2 { margin-bottom: 24px; }
.split__content p { margin-bottom: 20px; max-width: 32em; }

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---------------------------------------------------------------------
   13. CARDS — algemene basis
   --------------------------------------------------------------------- */
.card {
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.section--white .card { background: var(--paper-soft); }
.section--paper .card { background: var(--paper-soft); }
.section--ink .card {
  background: var(--paper);
  color: var(--body);
}
.section--ink .card h3 { color: var(--ink); }

.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 14px; line-height: 1.55; }

/* Diensten-cards met nummer */
.service-card {
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--line);
}
.service-card__number {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 12px;
}
.service-card p { color: var(--body); font-size: 15px; }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ---------------------------------------------------------------------
   14. TOOLS — cards en grid
   --------------------------------------------------------------------- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tool-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 24px;
  text-decoration: none;
  color: var(--body);
  border: 1px solid var(--line);
  transition: transform var(--t-base), box-shadow var(--t-base);
  min-height: 280px;
}
.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  color: var(--body);
}

.tool-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  min-height: 56px;
}
.tool-card__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
/* Logo met veel witruimte rond het medaillon (Crassus): optisch gelijktrekken */
.tool-card__logo--inset { transform: scale(1.4); transform-origin: center; }
.tool-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-soft);
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.tool-card__icon svg { width: 24px; height: 24px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge--live {
  background: rgba(184, 146, 42, 0.12);
  color: var(--gold);
}
.badge--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 146, 42, 0.2);
}
.badge--demo {
  background: rgba(28, 44, 68, 0.08);
  color: var(--ink);
}
.badge--case {
  background: rgba(139, 130, 118, 0.18);
  color: var(--accent);
}

.tool-card__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 8px;
}
.tool-card__desc {
  flex: 1;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.tool-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

/* ---------------------------------------------------------------------
   15. QUOTES (aanbevelingen)
   --------------------------------------------------------------------- */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.section--white .quote { background: var(--paper); }

.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 20px;
}
.quote__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.quote__role {
  font-size: 13px;
  color: var(--accent);
  margin: 4px 0 0;
}

/* ---------------------------------------------------------------------
   16. CONTACT CTA (accent-sectie)
   --------------------------------------------------------------------- */
.cta-block {
  text-align: center;
}
.cta-block h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 32px;
}
.cta-block .btn--on-dark {
  background: var(--paper);
  color: var(--ink);
  padding: 14px 32px;
  font-size: 16px;
}

/* ---------------------------------------------------------------------
   17. FOOTER
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--on-ink-text);
  padding: 72px 0 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-weight: 600;
}
.site-footer__logo {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--paper);
  margin: 0 0 12px;
}
.site-footer__logo em { color: var(--gold); font-style: normal; }
.site-footer p {
  font-size: 14px;
  color: var(--on-ink-text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: 10px; }
.site-footer a {
  color: var(--on-ink-text);
  font-size: 14px;
  transition: color var(--t-fast);
}
.site-footer a:hover { color: var(--gold); }

.site-footer__bottom {
  border-top: 1px solid rgba(244, 239, 229, 0.12);
  padding-top: 24px;
  font-size: 13px;
  color: var(--on-ink-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

/* ---------------------------------------------------------------------
   18. TIJDLIJN (Over-mij werkervaring)
   --------------------------------------------------------------------- */
.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-left: 36px;
  margin-bottom: 36px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
}

.timeline-item--past .timeline-dot {
  border-color: var(--accent);
}

.timeline-content .eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
}
.timeline-content .eyebrow::before { display: none; }

.timeline-content h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2px;
}

.timeline-content .role {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
}

.timeline-content p:not(.role):not(.eyebrow) {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  margin: 0;
  max-width: 60ch;
}

/* ---------------------------------------------------------------------
   19. CONTACTFORMULIER
   --------------------------------------------------------------------- */
.contact-form {
  display: grid;
  gap: 20px;
  max-width: 560px;
  margin-top: 32px;
}
.contact-form label {
  display: block;
}
.contact-form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(28, 44, 68, 0.08);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.contact-form button {
  justify-self: start;
}

/* ---------------------------------------------------------------------
   20. ARTIKEL-LAYOUT (blogposts, privacy)
   --------------------------------------------------------------------- */
.article {
  max-width: 38em;
  margin: 0 auto;
}
.article h1 { margin-bottom: 16px; }
.article .meta {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.article p, .article ul, .article ol {
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
}
.article h2 {
  font-size: 28px;
  margin-top: 48px;
}
.article h3 {
  font-size: 20px;
  margin-top: 32px;
}
.article ul, .article ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
}

/* ---------------------------------------------------------------------
   21. TOOL-PAGINA SECTIES (specifiek)
   --------------------------------------------------------------------- */
.tool-hero {
  padding-top: clamp(80px, 9vw, 120px);
  padding-bottom: clamp(64px, 7vw, 96px);
}
.tool-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.tool-hero h1 {
  font-size: clamp(44px, 5vw, 64px);
  margin-bottom: 24px;
}
.tool-hero .lead {
  font-size: 19px;
  max-width: 40em;
  margin-bottom: 32px;
}
.tool-hero__badge {
  margin-bottom: 16px;
}
.tool-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tool-hero__art {
  width: 220px;
  flex-shrink: 0;
}
.tool-hero__art img {
  width: 100%;
}

.method-list {
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.method-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 24px;
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.method-list__num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.method-list h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-family: var(--sans);
  font-weight: 600;
}
.method-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.flow-steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.flow-steps li {
  position: relative;
  padding: 20px 24px 20px 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  counter-increment: step;
}
.section--paper .flow-steps li { background: var(--white); }
.section--white .flow-steps li { background: var(--paper); }

.flow-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 22px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
}
.flow-steps h4 {
  margin: 0 0 4px;
  font-size: 15px;
}
.flow-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.placeholder-img {
  background: var(--paper-soft);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 64px 32px;
  text-align: center;
  color: var(--accent);
  font-size: 14px;
  margin: 24px 0;
}
.placeholder-img strong { display: block; color: var(--ink); margin-bottom: 8px; }

/* Grote contact-iconen op de contactsectie */
.contact-icons {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact-icon__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--accent);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.contact-icon__circle svg { width: 28px; height: 28px; }
.contact-icon:hover .contact-icon__circle { color: var(--ink); border-color: var(--ink); background: var(--paper-soft); }
.contact-icon__label { font-size: 12.5px; color: var(--body); }

/* Screenshot-galerij voor tool-paginas */
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.shots__item {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper-soft);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.shots__item:hover { border-color: var(--ink); transform: translateY(-2px); }
.shots__item img { display: block; width: 100%; height: auto; }
.shots__cap {
  display: block;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--body);
}
@media (max-width: 600px) {
  .shots { grid-template-columns: 1fr 1fr; gap: 10px; }
  .shots__cap { font-size: 11px; padding: 8px 10px; }
}

/* Lightbox-overlay voor screenshots */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(28, 44, 68, 0.94);
}
.lightbox.is-open { display: flex; }
.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox__img {
  max-width: 86vw;
  max-height: 76vh;
  border-radius: var(--radius-md);
  background: var(--paper-soft);
}
.lightbox__cap { color: var(--paper); font-size: 14px; margin: 18px 0 0; text-align: center; }
.lightbox__count { color: var(--on-ink-mute); font-size: 12px; margin: 6px 0 0; }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 229, 0.4);
  background: transparent;
  color: var(--on-ink-h);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 229, 0.4);
  background: transparent;
  color: var(--on-ink-h);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--on-ink-h); color: var(--ink); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav svg { width: 24px; height: 24px; }
@media (max-width: 600px) {
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

.disclaimer-block {
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  border-left: 3px solid var(--accent);
  margin-top: 24px;
}
.disclaimer-block strong { color: var(--ink); }

/* ---------------------------------------------------------------------
   22. NIEUWSBRIEF PREVIEW (Crassus)
   --------------------------------------------------------------------- */
.newsletter-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 32px;
}
.newsletter-preview__header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.newsletter-preview__header img { width: 48px; height: 48px; }
.newsletter-preview__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin: 0;
}
.newsletter-preview__date {
  font-size: 13px;
  color: var(--accent);
  margin: 4px 0 0;
}

.scorebord {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.scorebord__cell {
  padding: 14px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  text-align: center;
}
.scorebord__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.scorebord__value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin: 0;
}
.scorebord__value.positive { color: #2d7a4a; }
.scorebord__value.negative { color: #a83232; }

/* ---------------------------------------------------------------------
   23. BLOG GRID
   --------------------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.blog-card {
  display: block;
  background: var(--paper-soft);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--body);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  color: var(--body);
}
.blog-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 12px;
}
.blog-card__cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.blog-empty {
  text-align: center;
  padding: 64px 32px;
  background: var(--paper-soft);
  border-radius: var(--radius-md);
  border: 1px dashed var(--accent);
  margin-top: 32px;
}
.blog-empty p {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  margin: 0;
}

/* ---------------------------------------------------------------------
   24. RESPONSIEVE BREAKPOINTS
   --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .portrait-card { margin-left: 0; }
  .tool-hero__inner { grid-template-columns: 1fr; }
  .tool-hero__art { width: 160px; }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 20px var(--container-pad);
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(28, 44, 68, 0.08);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 8px 0; font-size: 16px; }
  .site-nav .btn { padding: 12px 24px; text-align: center; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
  .clients__list { gap: 16px 24px; }
}

@media (max-width: 480px) {
  .hero__cta .btn,
  .tool-hero__cta .btn { width: 100%; justify-content: center; }
  .card, .service-card, .tool-card { padding: 20px; }
  .quote { padding: 20px 24px; }
}

/* ---------------------------------------------------------------------
   25. UTILITY KLASSEN
   --------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-0 { margin-bottom: 0; }

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

/* ---------------------------------------------------------------------
   26. AANBEVELINGEN CAROUSEL
   --------------------------------------------------------------------- */
.carousel {
  position: relative;
  margin-top: 40px;
}

.carousel__viewport {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 4px;
  box-sizing: border-box;
}

/* Quote-kaart in carousel */
.carousel .quote {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.section--white .carousel .quote { background: var(--paper); }

.carousel .quote__text {
  position: relative;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Ingeklapte staat: toon ongeveer de eerste alinea */
.carousel .quote__text.is-collapsed {
  max-height: 9.6em;
}
.carousel .quote__text.is-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--white));
}
.section--white .carousel .quote__text.is-collapsed::after {
  background: linear-gradient(to bottom, rgba(244,239,229,0), var(--paper));
}

.quote__toggle {
  background: none;
  border: 0;
  padding: 0;
  margin: 8px 0 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  align-self: flex-start;
}
.quote__toggle:hover { text-decoration: underline; }

.carousel .quote__author { margin-top: auto; }

/* Navigatie-knoppen */
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-base);
  flex-shrink: 0;
}
.carousel__btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carousel__btn:disabled:hover {
  background: transparent;
  color: var(--ink);
}
.carousel__btn svg { width: 20px; height: 20px; }

/* Stippen / teller */
.carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  padding: 0;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.carousel__counter {
  font-size: 13px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  min-width: 48px;
  text-align: center;
}

/* Toon twee slides naast elkaar op breder scherm */
@media (min-width: 760px) {
  .carousel__slide { flex: 0 0 50%; }
}

/* Tool-carousel op de donkere TOOLS-sectie: kaarten i.p.v. quotes, tot 4 naast elkaar */
.tool-carousel .carousel__slide { flex: 0 0 100%; }
@media (min-width: 600px) {
  .tool-carousel .carousel__slide { flex: 0 0 50%; }
}
@media (min-width: 980px) {
  .tool-carousel .carousel__slide { flex: 0 0 25%; }
}
.tool-carousel .tool-card { height: 100%; }
.section--ink .tool-carousel .carousel__btn {
  border-color: var(--on-ink-text);
  color: var(--on-ink-h);
}
.section--ink .tool-carousel .carousel__btn:hover {
  background: var(--on-ink-h);
  color: var(--ink);
}
.section--ink .tool-carousel .carousel__btn:disabled:hover {
  background: transparent;
  color: var(--on-ink-h);
}
.section--ink .tool-carousel .carousel__counter { color: var(--on-ink-mute); }

/* Zijpijlen: knoppen links en rechts naast de kaarten, verticaal gecentreerd */
.tool-carousel { position: relative; padding: 0 60px; }
.carousel__side {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(244, 239, 229, 0.45);
  background: transparent; color: var(--on-ink-h);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base); z-index: 2;
}
.carousel__side svg { width: 22px; height: 22px; }
.carousel__side--prev { left: 0; }
.carousel__side--next { right: 0; }
.carousel__side:hover { background: var(--on-ink-h); color: var(--ink); }
.carousel__side:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel__side:disabled:hover { background: transparent; color: var(--on-ink-h); }
.tool-carousel .carousel__nav { margin-top: 20px; }
@media (max-width: 600px) {
  .tool-carousel { padding: 0 44px; }
  .carousel__side { width: 40px; height: 40px; }
}

/* ---------------------------------------------------------------------
   27. CASE-PAGINA (Adeline)
   --------------------------------------------------------------------- */
.case-shot {
  margin: 32px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.case-shot img {
  width: 100%;
  display: block;
}
.case-shot__caption {
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  margin: 12px 0 0;
  font-style: italic;
}

/* Bredere screenshot die buiten de smalle tekstkolom mag groeien */
.case-shot--wide {
  width: 100vw;
  max-width: 1040px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1088px) {
  .case-shot--wide {
    width: auto;
    left: 0;
    transform: none;
  }
}
.case-shot--wide + .case-shot__caption {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

/* Resultaat-blok met de opdrachten */
.result-highlight {
  background: var(--ink);
  color: var(--on-ink-text);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  margin: 40px 0;
  text-align: center;
}
.result-highlight__number {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 72px);
  color: var(--gold);
  line-height: 1;
  margin: 0 0 12px;
}
.result-highlight__label {
  font-size: 18px;
  color: var(--on-ink-h);
  margin: 0 0 8px;
  font-family: var(--serif);
}
.result-highlight__sub {
  font-size: 15px;
  color: var(--on-ink-mute);
  margin: 0;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

/* Twee screenshots naast elkaar op breed scherm */
.case-shots-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.case-shots-duo .case-shot { margin: 0; }
@media (max-width: 720px) {
  .case-shots-duo { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------
   28. LINKEDIN-ICOON op portretkaart
   --------------------------------------------------------------------- */
.portrait-card__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.portrait-card__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--accent);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.portrait-card__social:hover { color: var(--ink); border-color: var(--ink); background: var(--paper-soft); }
.portrait-card__social svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
