/* ==========================================================================
   Fides Administratie & Belastingadviseurs — redesign demo
   Faro Digital — unsolicited redesign concept, not a live production build
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand — pixel-sampled from source logo, hardcoded */
  --brand-green: #5E7A01;
  --brand-burgundy: #A6052F;
  --brand-teal: #006888;
  --brand-ink: #141414;
  --brand-muted: #777777;

  /* Supporting neutrals */
  --bg: #F7F6F2;
  --bg-alt: #FFFFFF;
  --bg-ink: #141414;
  --border: #E4E1D8;
  --border-strong: #D2CEC1;
  --text: #1E1D1A;
  --text-muted: #66706F;
  --text-on-ink: #F3F1EA;
  --text-on-ink-muted: #A9A69C;

  /* Type */
  --font-display: 'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (4px base) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Radius / shadow */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 20, 0.06), 0 1px 1px rgba(20, 20, 20, 0.04);
  --shadow-md: 0 12px 32px -12px rgba(20, 20, 20, 0.18);
  --shadow-card-hover: 0 20px 40px -16px rgba(20, 20, 20, 0.22);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; color: var(--brand-ink); }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 640px) {
  .container { padding-inline: var(--sp-7); }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -60px;
  background: var(--brand-ink);
  color: var(--text-on-ink);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  min-height: 48px;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--brand-burgundy);
  color: #fff;
  border-color: var(--brand-burgundy);
}
.btn-primary:hover { background: #870226; border-color: #870226; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--brand-ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover { border-color: var(--brand-ink); transform: translateY(-1px); }
.btn-ghost-light {
  background: transparent;
  color: var(--text-on-ink);
  border-color: rgba(243,241,234,0.35);
}
.btn-ghost-light:hover { border-color: var(--text-on-ink); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 246, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--brand-ink);
}
.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-muted);
  font-weight: 600;
  margin-top: 2px;
}

.header-actions { display: flex; align-items: center; gap: var(--sp-5); }
.header-phone {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-ink);
  white-space: nowrap;
}
.header-phone svg { width: 18px; height: 18px; color: var(--brand-teal); }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0;
}
.menu-toggle:hover { border-color: var(--brand-ink); }
.menu-toggle-bars { position: relative; width: 18px; height: 12px; }
.menu-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--brand-ink); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease);
}
.menu-toggle-bars span:nth-child(1) { top: 0; }
.menu-toggle-bars span:nth-child(2) { top: 5px; }
.menu-toggle-bars span:nth-child(3) { top: 10px; }
.nav-open .menu-toggle-bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav-open .menu-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-open .menu-toggle-bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(85vw, 360px);
  background: var(--bg-alt);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  z-index: 600;
  overflow-y: auto;
  box-shadow: -20px 0 40px rgba(0,0,0,0.15);
}
.nav-open .main-nav { transform: translateX(0); }
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(20,20,20,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 550;
}
.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }

.nav-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--border);
}
.nav-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
}
.nav-close:hover { border-color: var(--brand-ink); }

.nav-list { padding: var(--sp-3) var(--sp-5) var(--sp-8); }
.nav-item { border-bottom: 1px solid var(--border); }
.nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-ink);
}
.nav-item.current .nav-link { color: var(--brand-burgundy); }
.nav-sub { display: none; padding-bottom: var(--sp-3); }
.nav-item.has-children.expanded .nav-sub { display: block; }
.nav-sub-link {
  display: block;
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-4);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  border-left: 2px solid var(--border-strong);
}
.nav-sub-link:hover, .nav-sub-link.current { color: var(--brand-teal); border-left-color: var(--brand-teal); }
.nav-caret { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s var(--ease); color: var(--brand-muted); }
.nav-item.expanded .nav-caret { transform: rotate(180deg); }
.nav-footer-cta { padding: var(--sp-5); }

@media (min-width: 1040px) {
  .header-phone { display: inline-flex; }
  .menu-toggle { display: none; }
  .nav-scrim { display: none; }
  .main-nav {
    position: static;
    width: auto;
    transform: none;
    background: none;
    box-shadow: none;
    overflow: visible;
  }
  .nav-panel-head { display: none; }
  .nav-list { display: flex; align-items: center; gap: var(--sp-6); padding: 0; }
  .nav-item { border: 0; position: relative; }
  .nav-link { padding: var(--sp-2) 0; font-size: 0.95rem; gap: var(--sp-1); white-space: nowrap; }
  .nav-item.current .nav-link { color: var(--brand-burgundy); }
  .nav-caret { width: 13px; height: 13px; }
  .nav-sub {
    display: block !important;
    position: absolute; top: 100%; left: 50%;
    transform: translate(-50%, 8px);
    opacity: 0; pointer-events: none;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--sp-3);
    min-width: 240px;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav-item.has-children:hover .nav-sub,
  .nav-item.has-children:focus-within .nav-sub {
    opacity: 1; pointer-events: auto; transform: translate(-50%, 0);
  }
  .nav-sub-link { border-left: 0; padding: var(--sp-2) var(--sp-3); border-radius: var(--radius-sm); }
  .nav-sub-link:hover { background: var(--bg); }
  .nav-footer-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(20,20,20,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,20,20,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, black, transparent 75%);
}
.hero-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}
.hero-accent-1 { width: 340px; height: 340px; right: -80px; top: -100px; border: 1.5px solid var(--brand-teal); }
.hero-accent-2 { width: 220px; height: 220px; right: 120px; top: 160px; border: 1.5px solid var(--brand-green); }
.hero-inner {
  position: relative;
  padding-block: var(--sp-9) var(--sp-8);
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 680px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: var(--sp-5);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--brand-teal);
}
.hero-title {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  letter-spacing: -0.01em;
  color: var(--brand-ink);
  max-width: 15ch;
}
.hero-title em { font-style: normal; color: var(--brand-burgundy); }
.hero-lede {
  margin-top: var(--sp-5);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 52ch;
}
.hero-actions {
  margin-top: var(--sp-7);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}
.hero-phone-inline {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 700; color: var(--brand-ink);
}
.hero-phone-inline svg { width: 18px; height: 18px; color: var(--brand-teal); }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  padding-block: var(--sp-6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
}
.trust-item:last-child { border-bottom: 0; }
.trust-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  color: var(--brand-teal);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-text strong { display: block; font-size: 0.98rem; color: var(--brand-ink); }
.trust-text span { font-size: 0.85rem; color: var(--text-muted); }
@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
  .trust-item { border-bottom: 0; border-right: 1px solid var(--border); padding-right: var(--sp-5); }
  .trust-item:last-child { border-right: 0; }
}

/* ---------- Section shell ---------- */
.section { padding-block: var(--sp-9); }
.section-tight { padding-block: var(--sp-8); }
.section-ink { background: var(--bg-ink); color: var(--text-on-ink); }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--border); }
.section-head { max-width: 620px; margin-bottom: var(--sp-8); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-burgundy);
  margin-bottom: var(--sp-3);
}
.section-ink .section-eyebrow { color: var(--brand-green); }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-lede { margin-top: var(--sp-4); color: var(--text-muted); font-size: 1.05rem; }
.section-ink .section-lede { color: var(--text-on-ink-muted); }
.section-ink .section-title { color: var(--text-on-ink); }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--bg-alt);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: background-color 0.25s var(--ease);
  position: relative;
}
.service-card:hover { background: var(--bg); }
.service-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--brand-muted);
  letter-spacing: 0.05em;
}
.service-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-teal);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-card:hover .service-icon { border-color: var(--brand-teal); transform: translateY(-2px); }
.service-icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 1.2rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; flex-grow: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 700; font-size: 0.88rem; color: var(--brand-ink);
  margin-top: var(--sp-2);
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(3px); }
.service-card.is-link::after {
  content: '';
  position: absolute; inset: 0;
}

/* ---------- Editorial split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-9); }
  .split.reverse .split-media { order: 2; }
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-media-caption {
  position: absolute; left: var(--sp-5); bottom: var(--sp-5);
  background: rgba(20,20,20,0.72);
  color: var(--text-on-ink);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.split-body h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.split-body .section-lede { margin-top: var(--sp-4); }
.split-points { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-4); }
.split-point { display: flex; gap: var(--sp-3); align-items: flex-start; }
.split-point svg { width: 20px; height: 20px; color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }
.split-point strong { display: block; color: var(--brand-ink); font-size: 0.98rem; }
.split-point span { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  counter-reset: step;
}
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding: var(--sp-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--border-strong);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.step h3 { font-size: 1.15rem; margin-bottom: var(--sp-3); }
.step p { color: var(--text-muted); font-size: 0.95rem; }
.step-connector {
  display: none;
}
@media (min-width: 860px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.9rem; right: calc(var(--sp-6) * -1 + -1px);
    width: calc(var(--sp-6) * 2);
    height: 1px;
    background: repeating-linear-gradient(to right, var(--border-strong) 0 6px, transparent 6px 12px);
    z-index: 1;
  }
}

/* ---------- Portal cards ---------- */
.portal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 700px) { .portal-grid { grid-template-columns: repeat(2, 1fr); } }
.portal-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-7);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-strong);
  background: var(--bg-alt);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.portal-card:hover { border-color: var(--brand-teal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.portal-top { display: flex; align-items: center; justify-content: space-between; }
.portal-badge {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-teal);
}
.portal-badge svg { width: 24px; height: 24px; }
.portal-ext { width: 16px; height: 16px; color: var(--brand-muted); }
.portal-card h3 { font-size: 1.3rem; }
.portal-card p { color: var(--text-muted); font-size: 0.95rem; }
.portal-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 700; color: var(--brand-teal); font-size: 0.92rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: var(--brand-ink);
  color: var(--text-on-ink);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(94,122,1,0.35), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(166,5,47,0.25), transparent 60%);
}
.cta-band-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}
@media (min-width: 860px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band h2 { color: var(--text-on-ink); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 22ch; }
.cta-band p { color: var(--text-on-ink-muted); margin-top: var(--sp-3); max-width: 46ch; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.cta-contact-list { margin-top: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); }
.cta-contact-list a { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--text-on-ink); font-weight: 600; font-size: 0.95rem; }
.cta-contact-list svg { width: 16px; height: 16px; color: var(--brand-green); }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-ink); color: var(--text-on-ink-muted); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  padding-block: var(--sp-9) var(--sp-7);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand .brand-name { color: var(--text-on-ink); }
.footer-brand .brand-tagline { color: var(--text-on-ink-muted); }
.footer-brand p { margin-top: var(--sp-4); font-size: 0.9rem; max-width: 34ch; color: var(--text-on-ink-muted); }
.footer-col h4 {
  color: var(--text-on-ink);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: var(--text-on-ink); }
.footer-address { font-style: normal; font-size: 0.92rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(243,241,234,0.12);
  padding-block: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: 0.82rem;
}
@media (min-width: 760px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-bottom-links { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.footer-credit { opacity: 0.65; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding-block: var(--sp-8) var(--sp-7);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: var(--sp-5);
}
.breadcrumb a:hover { color: var(--brand-teal); }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); max-width: 22ch; }
.page-hero .section-lede { max-width: 60ch; }

/* ---------- Content prose (interior pages) ---------- */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.5rem; margin-top: var(--sp-8); margin-bottom: var(--sp-4); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: var(--sp-4); color: var(--text); }
.prose p.lede-muted { color: var(--text-muted); }
.prose ul { margin-bottom: var(--sp-4); }
.prose li { position: relative; padding-left: var(--sp-5); margin-bottom: var(--sp-3); color: var(--text); }
.prose li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-teal);
}

/* ---------- Mini service cards (Diensten page) ---------- */
.mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 700px) { .mini-grid { grid-template-columns: repeat(2, 1fr); } }
.mini-card {
  padding: var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}
.mini-card h3 { font-size: 1.05rem; margin-bottom: var(--sp-2); }
.mini-card p { font-size: 0.9rem; color: var(--text-muted); }
.mini-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-muted);
  margin-bottom: var(--sp-3);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 940px) { .contact-layout { grid-template-columns: 1fr 1.15fr; } }
.contact-card {
  padding: var(--sp-7);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.contact-info-item { display: flex; gap: var(--sp-4); align-items: flex-start; padding-block: var(--sp-4); border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: 0; }
.contact-info-item svg { width: 20px; height: 20px; color: var(--brand-teal); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 0.95rem; color: var(--brand-ink); }
.contact-info-item a, .contact-info-item span.value { color: var(--text-muted); font-size: 0.92rem; }
.contact-info-item a:hover { color: var(--brand-teal); }

.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); margin-top: var(--sp-6); }
@media (min-width: 560px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--brand-ink); }
.field input, .field textarea, .field select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand-teal);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field-required::after { content: ' *'; color: var(--brand-burgundy); }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: var(--sp-2); }
.form-success {
  display: none;
  padding: var(--sp-5);
  border-radius: var(--radius-md);
  background: rgba(94,122,1,0.08);
  border: 1.5px solid var(--brand-green);
  color: var(--brand-ink);
  align-items: flex-start;
  gap: var(--sp-3);
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--brand-green); flex-shrink: 0; margin-top: 1px; }
.contact-form.is-submitted { display: none; }

/* ---------- Reveal animation with fallback ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible,
.no-js .reveal,
html:not(.js) .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.stack-gap { display: flex; flex-direction: column; gap: var(--sp-6); }
.badge-jaren {
  display: inline-flex; align-items: baseline; gap: var(--sp-2);
  font-family: var(--font-display);
  color: var(--brand-ink);
}
.badge-jaren strong { font-size: 2.4rem; color: var(--brand-burgundy); }
