/* ═══════════════════════════════════════════════════════════
   SBBA — Accountancy, Finance & Consulting
   Editorial redesign · navy / off-white / turquoise / copper
   ═══════════════════════════════════════════════════════════ */

:root {
  /* color tokens */
  --navy: #0c1e38;
  --navy-deep: #081527;
  --navy-soft: #16294a;
  --paper: #f6f3ed;
  --paper-deep: #efeae0;
  --turquoise: #159fb5;
  --turquoise-bright: #1db9cf;
  --copper: #b0703c;
  --ink: #1d2530;
  --ink-soft: rgba(29, 37, 48, 0.68);
  --paper-ink: rgba(246, 243, 237, 0.72);
  --hairline: rgba(12, 30, 56, 0.14);
  --hairline-light: rgba(246, 243, 237, 0.18);

  /* system tokens */
  --r-s: 8px;
  --r-m: 12px;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --t-fast: 0.25s var(--ease);
  --t-med: 0.5s var(--ease);
  --font-display: "Clash Display", "Satoshi", sans-serif;
  --font-body: "Satoshi", sans-serif;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 34rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--turquoise); color: #fff; }

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

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--navy); color: #fff; padding: 0.6rem 1rem;
  border-radius: var(--r-s); transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

/* ── type system ─────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy);
  max-width: 22ch;
}
.display-light { color: var(--paper); }

.eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: var(--copper); }
.eyebrow-light { color: var(--copper); }

.lead { font-size: 1.15rem; line-height: 1.6; color: var(--ink-soft); max-width: var(--measure); }

.placeholder { color: var(--ink-soft); font-style: italic; }

/* ── buttons & links ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.98rem;
  padding: 0.85rem 1.7rem;
  border: 0; border-radius: var(--r-s); cursor: pointer;
  transition: background-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--turquoise); color: #fff;
}
.btn-primary:hover { background: var(--turquoise-bright); }

.btn-cta {
  background: var(--turquoise); color: #fff;
  padding: 0.55rem 1.15rem; font-size: 0.9rem;
}
.btn-cta:hover { background: var(--turquoise-bright); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.98rem; color: var(--navy);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 0.2rem;
  transition: border-color var(--t-fast), color var(--t-fast), gap var(--t-fast);
}
.link-arrow:hover { color: var(--turquoise); border-color: var(--turquoise); gap: 0.8rem; }

/* ── header ──────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background-color var(--t-med), box-shadow var(--t-med);
}
.site-header.solid {
  background: var(--navy-deep);
  box-shadow: 0 1px 0 var(--hairline-light);
}
.header-inner {
  max-width: 82rem; margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: flex; align-items: center; gap: 2.5rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { height: 26px; width: auto; }
.brand-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; letter-spacing: 0.08em; color: var(--paper);
}
.header-nav { display: flex; gap: 1.8rem; margin-left: auto; }
.header-nav a {
  color: var(--paper-ink); font-size: 0.95rem; font-weight: 500;
  transition: color var(--t-fast);
}
.header-nav a:hover,
.header-nav a[aria-current="page"] { color: #fff; }
.site-header.is-subpage {
  background: var(--navy-deep);
  box-shadow: 0 1px 0 var(--hairline-light);
}
.header-tools { display: flex; align-items: center; gap: 1.1rem; }

.lang-switch { display: flex; align-items: center; gap: 0.4rem; }
.lang-sep { color: var(--paper-ink); font-size: 0.8rem; }
.lang-btn {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; color: var(--paper-ink);
  padding: 0.2rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { color: #fff; border-color: var(--turquoise); }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 2.4rem; height: 2.4rem;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.burger span {
  width: 1.4rem; height: 2px; background: var(--paper); display: block;
  transition: transform var(--t-fast);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center; gap: 3rem;
  padding: var(--gutter);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 2rem;
  color: var(--paper);
}
.mobile-menu-foot { display: flex; flex-direction: column; gap: 0.5rem; color: var(--paper-ink); }
.mobile-menu-foot a { color: var(--turquoise-bright); font-weight: 700; }

/* ── hero ────────────────────────────────────── */
.hero { background: var(--navy); color: var(--paper); }
.hero-grid {
  max-width: 82rem; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: stretch;
  min-height: min(88vh, 54rem);
}
.hero-copy {
  padding: clamp(7rem, 14vh, 10rem) var(--gutter) clamp(3rem, 6vh, 5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.kicker {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper-ink);
  margin-bottom: 1.6rem;
}
.kicker-loc { color: var(--copper); }
.kicker-loc::before { content: "· "; }
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.9rem, 6.8vw, 5.6rem);
  line-height: 0.99; letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.6rem;
}
.hero-title .line { display: block; }
.hero-title .line-loc {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--paper-ink);
  margin-bottom: 0.45rem;
}
.hero-title .line-accent { color: var(--turquoise-bright); }
.hero-sub {
  font-size: 1.12rem; line-height: 1.65;
  color: var(--paper-ink); max-width: var(--measure);
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.hero-actions .link-arrow { color: var(--paper); border-color: var(--hairline-light); }
.hero-actions .link-arrow:hover { color: var(--turquoise-bright); border-color: var(--turquoise-bright); }
.hero-langline {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--paper-ink);
  border-top: 1px solid var(--hairline-light);
  padding-top: 1.2rem; max-width: var(--measure);
}
.lang-mark {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--navy); background: var(--paper);
  padding: 0.15rem 0.4rem; border-radius: 3px;
}
.lang-mark-tr { background: var(--turquoise-bright); color: var(--navy-deep); margin-right: 0.4rem; }

.hero-visual { position: relative; overflow: hidden; min-height: 24rem; }
.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}
.hero-media-tint {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(12, 30, 56, 0.35) 30%, rgba(12, 30, 56, 0.12) 100%);
}
.hero-linework {
  position: absolute; inset: 0; width: 100%; height: 100%;
  color: rgba(246, 243, 237, 0.25);
}
.hero-badge {
  position: absolute; left: 1.6rem; bottom: 1.6rem;
  width: clamp(6rem, 8.5vw, 8.5rem); height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 30px -10px rgba(8, 21, 39, 0.55);
}

/* ── ticker ──────────────────────────────────── */
.ticker {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  padding: 1rem 0;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 2.4rem; will-change: transform; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 2.4rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(12, 30, 56, 0.5);
}
.marquee-item i {
  width: 5px; height: 5px; background: var(--copper);
  transform: rotate(45deg); display: inline-block;
}

/* ── sections shared ─────────────────────────── */
.section-head {
  max-width: 82rem; margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
}

/* ── services ────────────────────────────────── */
.services { background: var(--paper); }
.services-grid {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6.5rem);
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.services-aside { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.8rem; }
.aside-figure { position: relative; }
.aside-figure img {
  width: 100%; height: auto;
  border-radius: var(--r-m);
  aspect-ratio: 4 / 3; object-fit: cover;
  filter: saturate(0.85) contrast(1.03);
}
.aside-figure::after {
  content: ""; position: absolute; inset: 0.9rem -0.9rem -0.9rem 0.9rem;
  border: 1px solid var(--copper); border-radius: var(--r-m);
  z-index: -1;
}

.service-index { border-top: 1px solid var(--hairline); }
.svc-row { border-bottom: 1px solid var(--hairline); }
.svc-head {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: grid; grid-template-columns: 3.2rem 1fr auto;
  align-items: baseline; gap: 1rem;
  padding: 1.35rem 0.25rem;
  text-align: left; font-family: inherit;
  transition: padding-left var(--t-fast);
}
a.svc-head { color: inherit; }
.svc-head:hover { padding-left: 0.7rem; }
.svc-go {
  font-size: 1.15rem; color: var(--copper); align-self: center;
  transition: color var(--t-fast), transform var(--t-fast);
}
a.svc-head:hover .svc-go { color: var(--turquoise); transform: translateX(4px); }
.svc-num {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--copper);
}
.svc-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--navy);
  transition: color var(--t-fast);
}
.svc-head:hover .svc-name { color: var(--turquoise); }
.svc-toggle {
  position: relative; width: 0.9rem; height: 0.9rem; align-self: center;
}
.svc-toggle::before, .svc-toggle::after {
  content: ""; position: absolute; background: var(--navy);
  transition: transform var(--t-fast), background-color var(--t-fast);
}
.svc-toggle::before { left: 0; right: 0; top: calc(50% - 1px); height: 2px; }
.svc-toggle::after { top: 0; bottom: 0; left: calc(50% - 1px); width: 2px; }
.svc-head[aria-expanded="true"] .svc-toggle::after { transform: scaleY(0); }
.svc-head:hover .svc-toggle::before, .svc-head:hover .svc-toggle::after { background: var(--turquoise); }

.svc-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.svc-body > p {
  overflow: hidden;
  color: var(--ink-soft); max-width: 40rem;
  padding-left: 4.2rem;
}
.svc-row.open .svc-body { grid-template-rows: 1fr; }
.svc-row.open .svc-body > p { padding-bottom: 1.35rem; }

/* ── boekhouding & finance compare ───────────── */
.compare { background: var(--paper-deep); }
.compare .section-head { padding-bottom: clamp(1.5rem, 3vw, 2.2rem); }
.compare-grid {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6.5rem);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.compare-lead { grid-column: 1 / -1; max-width: 44rem; }
.compare-col { border-top: 1px solid var(--hairline); padding-top: 1.4rem; position: relative; }
.compare-col::before {
  content: ""; position: absolute; top: -3px; left: 0;
  width: 3.2rem; height: 7px; background: var(--copper);
}
.compare-col:last-child::before { background: var(--turquoise); }
.compare-col-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--navy); margin-bottom: 1rem;
}
.compare-list li {
  display: flex; gap: 0.8rem; align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-soft); max-width: 32rem;
}
.compare-list li::before {
  content: ""; flex: 0 0 auto;
  width: 5px; height: 5px; background: var(--copper);
  transform: rotate(45deg) translateY(-2px);
}
.compare-col:last-child .compare-list li::before { background: var(--turquoise); }

/* ── bilingual statement ─────────────────────── */
.bilingual { background: var(--navy); }
.bilingual-inner {
  max-width: 82rem; margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7rem) var(--gutter);
}
.bilingual-line { max-width: 18ch; margin-bottom: 1.6rem; }
.bilingual-sub { color: var(--paper-ink); max-width: var(--measure); }

/* ── approach ────────────────────────────────── */
.approach { background: var(--paper); }
.steps {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  counter-reset: step;
  position: relative;
}
.step { position: relative; padding-top: 1.6rem; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--hairline);
}
.step::after {
  content: ""; position: absolute; top: -3px; left: 0;
  width: 3.2rem; height: 7px; background: var(--turquoise);
}
.step-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 2.6rem; line-height: 1; color: var(--copper);
  display: block; margin-bottom: 0.9rem;
}
.step h2, .step h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.35rem; color: var(--navy);
  margin-bottom: 0.5rem;
}
.step p { color: var(--ink-soft); max-width: 26rem; }

/* ── over SBBA ───────────────────────────────── */
.about { background: var(--paper); }
.about-grid {
  max-width: 82rem; margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.about-copy { position: sticky; top: 6rem; }
.about-copy > p { max-width: var(--measure); color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-copy .display { margin-bottom: 1.2rem; }
.about-contactline { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.6rem; }

.about-points { border-top: 1px solid var(--hairline); }
.about-point {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hairline);
}
.about-point h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--navy); margin-bottom: 0.45rem;
}
.about-point p { color: var(--ink-soft); max-width: 40rem; }

/* ── team ────────────────────────────────────── */
.team { background: var(--paper-deep); }
.team-lead { margin-top: 1.2rem; }
.team-index {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(4rem, 8vw, 6.5rem);
  border-top: 0;
}
.team-row {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-top: 1px solid var(--hairline);
}
.team-index .team-row:last-child { border-bottom: 1px solid var(--hairline); }
.team-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--navy);
}
.team-role {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.4rem;
}
.team-exp { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.2rem; }
.team-spec {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.team-desc { color: var(--ink-soft); max-width: 40rem; }

/* ── proof ───────────────────────────────────── */
.proof { background: var(--navy-deep); }
.proof-list {
  max-width: 82rem; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.proof-list li {
  display: flex; flex-direction: column; gap: 0.3rem;
  border-left: 1px solid var(--hairline-light);
  padding-left: 1.2rem;
  color: var(--paper-ink); font-size: 0.92rem;
}
.proof-big {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--paper);
}

.testimonials {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 6vw, 4.5rem);
}
.testimonials[hidden] { display: none; }
.testimonials .eyebrow { margin-bottom: 1.8rem; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem);
}
.testimonial {
  border-top: 1px solid var(--hairline-light);
  padding-top: 1.2rem;
}
.testimonial::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display); font-size: 2.6rem; line-height: 0.6;
  color: var(--copper);
  margin-bottom: 0.7rem;
}
.testimonial p {
  color: var(--paper-ink); font-size: 1rem; line-height: 1.65;
  margin-bottom: 1.1rem; max-width: 30rem;
}
.testimonial footer { display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; }
.testimonial cite {
  font-style: normal; font-weight: 700; color: var(--paper); font-size: 0.95rem;
}
.testimonial footer span { color: var(--paper-ink); font-size: 0.85rem; }

/* ── contact ─────────────────────────────────── */
.contact { background: var(--navy); color: var(--paper); }
.contact-grid {
  max-width: 82rem; margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7rem) var(--gutter);
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contact-lead { color: var(--paper-ink); max-width: var(--measure); margin: 1.2rem 0 2.4rem; }
.contact-rows { border-top: 1px solid var(--hairline-light); max-width: 30rem; }
.contact-rows li {
  display: grid; grid-template-columns: minmax(7rem, 1fr) 2fr; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline-light);
  font-size: 1.02rem;
}
.ct-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper); align-self: baseline; padding-top: 0.25rem;
}
.contact-rows a { color: var(--paper); font-weight: 600; transition: color var(--t-fast); }
.contact-rows a:hover { color: var(--turquoise-bright); }

.contact-form {
  background: var(--paper);
  border-radius: var(--r-m);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink);
}
.contact-form h2, .contact-form h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.4rem; color: var(--navy);
  margin-bottom: 1.4rem;
}
.field { margin-bottom: 1.1rem; }
.field label, .field legend {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.35rem;
}
.field input[type="text"], .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-s);
  padding: 0.7rem 0.9rem;
  transition: border-color var(--t-fast);
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--turquoise);
}
.field textarea { resize: vertical; }
.field-radio { border: 0; }
.field-radio label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 500; color: var(--ink); font-size: 0.98rem;
  margin: 0.2rem 1.6rem 0 0;
}
.field-radio input { accent-color: var(--turquoise); }
.btn-submit { width: 100%; margin-top: 0.6rem; }
.btn-submit:disabled { opacity: 0.55; cursor: default; }
.form-success {
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  background: rgba(21, 159, 181, 0.1);
  border-left: 3px solid var(--turquoise);
  border-radius: 0 var(--r-s) var(--r-s) 0;
  color: var(--navy); font-weight: 500; font-size: 0.95rem;
}
.form-success[hidden] { display: none; }

/* ── footer ──────────────────────────────────── */
.site-footer {
  background: var(--navy-deep); color: var(--paper-ink);
  border-top: 1px solid var(--hairline-light);
}
.footer-inner {
  max-width: 82rem; margin: 0 auto;
  padding: 2.2rem var(--gutter);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  font-size: 0.92rem;
}
.footer-line { margin-left: auto; }
.footer-line a { color: var(--paper); }
.footer-line a:hover { color: var(--turquoise-bright); }
.footer-copy { flex-basis: 100%; font-size: 0.8rem; }
.footer-legal { color: var(--paper-ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal:hover { color: var(--turquoise-bright); }

/* ── inner page hero ─────────────────────────── */
.page-hero { background: var(--navy); color: var(--paper); }
.page-hero-inner {
  max-width: 82rem; margin: 0 auto;
  padding: clamp(7rem, 14vh, 10rem) var(--gutter) clamp(3rem, 6vh, 4.5rem);
}
.page-hero .hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  margin-bottom: 1.2rem;
}
.page-hero .hero-sub { margin-bottom: 0; }
.page-hero + .services .services-grid,
.page-hero + .approach .steps,
.page-hero + .team .team-index {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}
.contact.contact-page {
  padding-top: clamp(7rem, 14vh, 10rem);
}

/* ── homepage teasers ────────────────────────── */
.teaser-foot {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(3.5rem, 7vw, 5.5rem);
}
.home-about { background: var(--paper); }
.home-team { background: var(--paper-deep); }
.home-about-inner, .home-team-inner {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(3.5rem, 7vw, 5.5rem);
}
.home-about .section-head,
.home-team .section-head { padding-bottom: 1.2rem; }
.home-about .lead, .home-team .lead { margin-bottom: 1.6rem; }
.home-team-names {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-bottom: 1.8rem;
}
.home-team-names li {
  border-top: 1px solid var(--hairline);
  padding-top: 1.1rem;
}
.contact-teaser { grid-template-columns: minmax(0, 1fr); }
.contact-teaser .contact-info { max-width: 40rem; }
.contact-teaser .hero-actions { margin: 0; }

/* ── legal pages (voorwaarden / privacy) ─────── */
.legal-main { background: var(--paper); }
.legal {
  max-width: 46rem; margin: 0 auto;
  padding: clamp(7rem, 14vh, 9rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}
.legal h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--navy); margin-bottom: 0.6rem;
}
.legal .legal-sub { color: var(--ink-soft); margin-bottom: 2.4rem; }
.legal h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.3rem; color: var(--navy);
  margin: 2.2rem 0 0.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
}
.legal p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.legal ul { margin: 0 0 0.9rem; }
.legal ul li {
  color: var(--ink-soft);
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
}
.legal ul li::before {
  content: ""; position: absolute; left: 0.2rem; top: 0.95em;
  width: 5px; height: 5px; background: var(--copper);
  transform: rotate(45deg);
}
.legal ol { margin: 0 0 0.9rem; counter-reset: legal-li; }
.legal ol li {
  color: var(--ink-soft);
  padding: 0.3rem 0 0.3rem 1.8rem;
  position: relative;
  counter-increment: legal-li;
}
.legal ol li::before {
  content: counter(legal-li) "."; position: absolute; left: 0;
  font-weight: 700; color: var(--copper); font-size: 0.9rem;
}
.legal a { color: var(--turquoise); font-weight: 600; }
.legal .legal-back { margin-top: 2.6rem; }

/* ── werkgebied ──────────────────────────────── */
.area { background: var(--paper-deep); }
.area-lead {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) 1.6rem;
}
.area-lead .lead { margin: 0; }
.area-grid {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--r-m);
  overflow: hidden;
}
.area-card {
  display: flex; flex-direction: column; gap: 0.45rem;
  background: var(--paper);
  padding: 1.4rem 1.3rem 1.3rem;
  transition: background-color var(--t-fast);
}
.area-card:hover { background: #fff; }
.area-card strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem; color: var(--navy); letter-spacing: -0.01em;
}
.area-card span { font-size: 0.92rem; color: var(--ink-soft); }
.area-card em {
  font-style: normal; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--copper);
}
.area-card-wide {
  grid-column: 1 / -1;
  background: var(--navy);
  flex-direction: row; flex-wrap: wrap;
  align-items: baseline; justify-content: space-between; gap: 0.8rem 1.5rem;
}
.area-card-wide:hover { background: var(--navy-soft); }
.area-card-wide strong { color: #fff; font-size: 1.45rem; }
.area-card-wide span { color: var(--paper-ink); max-width: 36rem; }
.area-card-wide em { color: var(--turquoise-bright); }
.area-note {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(3.5rem, 7vw, 5.5rem);
  color: var(--ink-soft); font-size: 0.95rem;
}
.area-note a { color: var(--navy); font-weight: 700; border-bottom: 1px solid var(--hairline); }
.area-note a:hover { color: var(--turquoise); }

.crumbs {
  display: flex; flex-wrap: wrap; gap: 0.4rem 0.55rem;
  font-size: 0.82rem; color: var(--paper-ink);
  margin-bottom: 1.4rem;
}
.crumbs a { color: var(--paper); }
.crumbs a:hover { color: var(--turquoise-bright); }
.crumbs span[aria-hidden="true"] { color: var(--paper-ink); opacity: 0.6; }

.loc-copy {
  max-width: 82rem; margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.loc-prose { max-width: 40rem; }
.loc-prose p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.loc-aside {
  border-top: 1px solid var(--hairline);
  padding-top: 1.3rem;
}
.loc-aside h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 0.9rem;
}
.loc-aside ul li { padding: 0.45rem 0; border-bottom: 1px solid var(--hairline); }
.loc-aside a { font-weight: 600; color: var(--navy); }
.loc-aside a:hover { color: var(--turquoise); }
.related {
  max-width: 82rem; margin: 0 auto;
  padding: 0 var(--gutter) clamp(3.5rem, 7vw, 5.5rem);
}
.related-list {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
}
.related-list a {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.related-list a:hover { border-color: var(--turquoise); color: var(--turquoise); }

.faq { background: var(--paper); }
.faq-list { max-width: 82rem; margin: 0 auto; padding: 0 var(--gutter) clamp(3.5rem, 7vw, 5.5rem); }
.faq-list .svc-name { font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.faq-list .svc-body > p { max-width: 44rem; }

.map-embed {
  margin-top: 1.8rem;
  border-radius: var(--r-m);
  overflow: hidden;
  border: 1px solid var(--hairline-light);
  aspect-ratio: 16 / 10;
  min-height: 14rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer-map {
  margin: 0;
  width: 18rem;
  flex: 0 0 18rem;
  aspect-ratio: 16 / 10;
  min-height: 0;
  height: 10.5rem;
}

/* ── footer (rich) ───────────────────────────── */
.footer-rich {
  display: block;
  padding: 2.8rem var(--gutter) 2.2rem;
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem;
  align-items: center; justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--hairline-light);
}
.footer-brandblock { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-nap { color: var(--paper-ink); line-height: 1.7; }
.footer-nap a { color: var(--paper); }
.footer-nap a:hover { color: var(--turquoise-bright); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  padding: 2rem 0 1.6rem;
}
.footer-col-title {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 0.9rem;
}
.footer-cols ul li { padding: 0.28rem 0; }
.footer-cols a {
  color: var(--paper-ink); font-size: 0.95rem;
  transition: color var(--t-fast);
}
.footer-cols a:hover { color: #fff; }
.footer-rich .footer-copy { flex-basis: auto; padding-top: 0.4rem; border-top: 1px solid var(--hairline-light); padding-top: 1.3rem; }

/* ── reveal base (GSAP adds motion; visible by default) ── */
.reveal-item { opacity: 1; }

/* animation kill-switch (?noanim / reduced motion) */
html.noanim { scroll-behavior: auto; }

/* ── responsive ──────────────────────────────── */
@media (max-width: 1020px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 18rem; order: -1; margin-top: 3.6rem; }
  .hero-copy { padding-top: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .services-aside { position: static; }
  .aside-figure { max-width: 30rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { position: static; }
  .compare-grid { grid-template-columns: 1fr; }
  .team-row { grid-template-columns: 1fr; gap: 0.9rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .proof-list { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-badge { left: auto; right: 1.2rem; bottom: 1.2rem; }
  .home-team-names { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-copy { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .btn-cta { display: none; }
  .steps { grid-template-columns: 1fr; gap: 2.2rem; }
  .svc-head { grid-template-columns: 2.4rem 1fr auto; }
  .svc-body > p { padding-left: 3.4rem; }
  .footer-line { margin-left: 0; }
  .area-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-map { width: 100%; flex-basis: 100%; height: 10rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
