/* =========================================================
   Julie Braem · Accountancy & Fiscaliteit
   Design system — refined, warm, editorial-light
   ========================================================= */

:root {
  /* Brand colours */
  --red: #d2232a;
  --red-deep: #b01d24;
  --navy: #1e3a5f;
  --navy-soft: #24406a;
  --char: #2d3748;
  --slate: #64748b;
  --lgrey: #f1f5f9;
  --warm: #fafaf9;
  --green: #059669;
  --soft-red: #fee2e2;
  --line: #e7e9ef;

  /* Typography */
  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing / shape */
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --shadow-sm: 0 2px 10px rgba(31, 42, 68, .06);
  --shadow: 0 14px 40px rgba(31, 42, 68, .10);
  --shadow-lg: 0 26px 70px rgba(31, 42, 68, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1180px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--char);
  background: var(--warm);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 600; line-height: 1.1; }

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

.sr-only {
  position: absolute; 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: 1rem; top: -100px; z-index: 1000;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: min(var(--container), 100% - 2.6rem); margin-inline: auto; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tint { background: var(--lgrey); }
.section--dark { background: var(--navy); color: #e8edf4; }

.section__head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  letter-spacing: -.5px;
  color: var(--navy);
}
.section__title--light { color: #fff; }

/* ---------- Eyebrow / section numbers ---------- */
.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--red);
  margin: 0 0 1rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #ff9ea2; }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.section__no {
  font-variant-numeric: tabular-nums;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .15em .6em;
  font-size: .85em;
  letter-spacing: .05em;
  background: #fff;
}
.section--tint .section__no { background: var(--warm); }
.eyebrow--light .section__no { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}
.btn span { transition: transform .25s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(210,35,42,.28); }
.btn--primary:hover { background: var(--red-deep); box-shadow: 0 12px 28px rgba(210,35,42,.34); }
.btn--ghost { background: transparent; border-color: rgba(30,58,95,.25); color: var(--navy); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(30,58,95,.05); }
.btn--block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; color: var(--red);
}
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* =========================================================
   NAV (sits on top of hero, not sticky)
   Mirrors the hero's structure so logo/links align with hero content:
   - .nav outer padding === .hero side padding
   - .nav__inner padding === .hero__frame interior padding
   ========================================================= */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: clamp(1.3rem, 3.5vw, 2.4rem) clamp(1.3rem, 4vw, 4rem) 0;
  pointer-events: none;
}
.nav__inner {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  max-width: 1480px; margin-inline: auto;
  padding: clamp(1.6rem, 3.4vw, 2.8rem) clamp(1.4rem, 3.2vw, 2.6rem);
}
.nav__brand img {
  height: clamp(58px, 5.6vw, 82px); width: auto;
  /* SVG wordmark sits above its viewBox center; nudge down for optical alignment */
  transform: translateY(clamp(5px, 0.7vw, 9px));
}
.nav__links { display: flex; align-items: center; gap: clamp(1.6rem, 3vw, 2.8rem); }
.nav__links a {
  font-weight: 500; color: #fff; font-size: clamp(1.05rem, 1.15vw, 1.18rem);
  position: relative; padding: .3rem 0;
  text-shadow: 0 1px 10px rgba(0,0,0,.25);
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: #fff; transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a.nav__cta {
  background: transparent; color: #fff;
  padding: .8rem 1.6rem;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px; font-weight: 500;
  text-shadow: none;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.nav__links a.nav__cta::after { display: none; }
.nav__links a.nav__cta:hover { background: #fff; color: var(--navy); border-color: #fff; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer; padding: 10px; border-radius: 10px;
}
.nav__toggle span { height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding:
    clamp(1.3rem, 3.5vw, 2.4rem)
    clamp(1.3rem, 4vw, 4rem)
    clamp(2.5rem, 6vh, 5rem);
}
.hero__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.1rem, 2.6vh, 1.8rem);
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
  min-height: clamp(580px, 84vh, 800px);
  padding: clamp(1.4rem, 3.2vw, 2.6rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__img {
  position: absolute; top: 0; bottom: 0; left: 0; right: auto;
  width: 116%; height: 100%;
  object-fit: cover; object-position: 50% 28%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 14%, rgba(0,0,0,0) 42%);
}
.hero__card {
  position: relative; z-index: 2;
  align-self: flex-start;
  margin: 0;
  max-width: 560px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  letter-spacing: -.5px;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,.22);
  margin-bottom: .8rem;
}
.hero__title em { font-style: italic; color: var(--red); font-weight: 600; }
.hero__sub {
  font-family: var(--font-body); font-weight: 500;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.2);
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.32;
  margin: .35rem 0 1.8rem;
  max-width: 32ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn__icon { flex: none; }

/* hero offerings bar (audience segments) */
.hero__offerings {
  position: absolute; z-index: 2;
  left: clamp(1.4rem, 3.2vw, 2.6rem);
  right: clamp(1.4rem, 3.2vw, 2.6rem);
  bottom: clamp(1.4rem, 3.2vw, 2.6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.6rem, 1.3vw, 1rem);
}
.hero__offer {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 100%;
  padding: clamp(.95rem, 1.6vw, 1.2rem) clamp(1.05rem, 1.8vw, 1.35rem);
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--radius);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.hero__offer:hover { background: rgba(255,255,255,.97); box-shadow: var(--shadow); border-color: transparent; }
.hero__offer-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.hero__offer-text strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; letter-spacing: -.2px; color: var(--navy);
}
.hero__offer-text span { font-size: .9rem; line-height: 1.3; color: var(--slate); }
.hero__offer-arrow {
  flex: none; display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 999px;
  background: rgba(30,58,95,.08); color: var(--navy); font-size: 1rem;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.hero__offer:hover .hero__offer-arrow { background: var(--red); color: #fff; transform: translateX(3px); }

/* small scroll-margin so anchored sections aren't flush against the viewport top */
:where(section[id]) { scroll-margin-top: 24px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.service {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem);
}
.service__no {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--lgrey); letter-spacing: 1px;
}
.section--tint .service__no { color: #e2e7ef; }
.service__icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: var(--soft-red); color: var(--red);
  margin-bottom: 1.1rem;
}
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin-bottom: .5rem; }
.service p { margin: 0; color: var(--slate); font-size: .98rem; }
.diensten__more { margin: 2.4rem 0 0; font-size: 1.05rem; color: var(--slate); }

/* =========================================================
   AANPAK (why)
   ========================================================= */
.aanpak__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.aanpak__media { position: relative; }
.aanpak__media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 3/4; object-fit: cover; object-position: 50% 30%; }
.aanpak__badge {
  position: absolute; right: -14px; bottom: -18px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 1rem 1.3rem; display: flex; align-items: center; gap: .7rem;
  box-shadow: var(--shadow); max-width: 200px;
}
.aanpak__badge strong { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: #fff; }
.aanpak__badge span { font-size: .82rem; line-height: 1.25; color: #c6d2e4; text-transform: uppercase; letter-spacing: .06em; }
.aanpak__body .lead { font-size: 1.2rem; color: var(--char); font-weight: 500; }
.aanpak__body p { color: var(--slate); }
.pull {
  margin: 1.6rem 0; padding: 1rem 0 1rem 1.4rem;
  border-left: 3px solid var(--red);
  font-family: var(--font-display); font-size: 1.3rem; line-height: 1.45;
  color: var(--navy); font-style: italic;
}

/* =========================================================
   TEAM
   ========================================================= */
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.member { margin: 0; }
.member__photo { position: relative; aspect-ratio: 4/6.4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.team__grid .member:nth-child(3) .member__photo img { object-position: 50% 14%; }
.member figcaption { padding: 1rem .2rem 0; }
.member h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); }
.member__role { margin: .15rem 0 .5rem; color: var(--red); font-weight: 600; font-size: .92rem; }
.member__note { margin: 0; color: var(--slate); font-size: .9rem; line-height: 1.5; }

/* =========================================================
   SPONSORS
   ========================================================= */
.sponsors { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.sponsors__row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch;
  gap: clamp(1.6rem, 5vw, 3.5rem); margin-top: 1.9rem;
}
.sponsor { display: flex; flex-direction: column; align-items: center; gap: .95rem; }
.sponsor__chip {
  display: grid; place-items: center;
  width: 256px; height: 150px; padding: 1.2rem 1.6rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.sponsor__chip img { max-height: 112px; max-width: 212px; width: auto; object-fit: contain; }
.sponsor__city { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--slate); text-align: center; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__text { color: #c6d2e4; max-width: 42ch; }
.contact__details { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.contact__details li { display: flex; flex-direction: column; gap: .15rem; }
.contact__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: #ff9ea2; }
.contact__details a { font-size: 1.18rem; color: #fff; font-weight: 500; width: fit-content; }
.contact__details a:hover { color: #ff9ea2; }
.contact__banner {
  width: 100%; margin-bottom: clamp(2rem, 4vw, 3.2rem);
  border-radius: var(--radius); box-shadow: var(--shadow);
  height: auto; aspect-ratio: 16/6; object-fit: cover; object-position: 50% 60%;
}
@media (max-width: 760px) { .contact__banner { aspect-ratio: 3/2; } }

.contact__form-wrap {
 box-shadow: var(--shadow-lg);
}
#contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--navy); }
.field__opt { color: var(--slate); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--char);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(210,35,42,.13);
}
.field select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231e3a5f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center;
  padding-right: 2.6rem;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input.is-invalid, .field textarea.is-invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(210,35,42,.13); }
.cform__fine { margin: -.2rem 0 0; font-size: .85rem; color: var(--slate); text-align: center; }
.cform__status {
  margin: 0; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  font-weight: 500; font-size: .95rem;
}
.cform__status[data-state="success"] { background: rgba(5,150,105,.1); color: var(--green); border: 1px solid rgba(5,150,105,.3); }
.cform__status[data-state="info"] { background: var(--soft-red); color: var(--red-deep); border: 1px solid rgba(210,35,42,.25); }

/* =========================================================
   FOOTER (light warm close, with subtle brand watermark)
   ========================================================= */
.footer {
  position: relative;
  background: var(--warm);
  color: var(--slate);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
  overflow: hidden;
}
.footer__watermark {
  position: absolute;
  right: clamp(-3rem, -2vw, -1.5rem);
  bottom: clamp(-2.5rem, -3vw, -1.5rem);
  width: clamp(220px, 28vw, 380px);
  height: auto;
  opacity: .055;
  pointer-events: none;
  user-select: none;
}
.footer__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem;
}
.footer__mark img { width: 48px; height: auto; }
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 600;
  margin: .9rem 0 .4rem;
}
.footer__tag { margin: 0; max-width: 34ch; font-size: .95rem; color: var(--slate); }
.footer__col h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.footer__col { display: flex; flex-direction: column; gap: .55rem; }
.footer__col a { color: var(--slate); transition: color .2s var(--ease); display: inline-flex; align-items: center; gap: .6rem; }
.footer__col a:hover { color: var(--red); }
.footer__icon { flex: none; color: var(--red); transition: color .2s var(--ease); }
.footer__col a:hover .footer__icon { color: var(--red); }
.footer__bottom {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  margin-top: 2.8rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .85rem;
  color: var(--slate);
}
.footer__meta { display: flex; gap: 1.4rem; }
.footer__meta a { color: var(--slate); transition: color .2s var(--ease); }
.footer__meta a:hover { color: var(--red); }
.footer__credit { color: var(--slate); }
.footer__credit a { color: var(--navy); font-weight: 500; }
.footer__credit a:hover { color: var(--red); }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.services .reveal.is-visible:nth-child(2) { transition-delay: .08s; }
.services .reveal.is-visible:nth-child(3) { transition-delay: .16s; }
.services .reveal.is-visible:nth-child(4) { transition-delay: .24s; }
.team__grid .reveal.is-visible:nth-child(2) { transition-delay: .08s; }
.team__grid .reveal.is-visible:nth-child(3) { transition-delay: .16s; }
.team__grid .reveal.is-visible:nth-child(4) { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service, .audience__card { transition: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .aanpak__grid { grid-template-columns: 1fr; }
  .aanpak__media { max-width: 520px; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__brand, .nav__toggle { position: relative; z-index: 110; }
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
    background: rgba(255,255,255,.97);
    -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%);
    padding: 5.5rem 1.6rem 2.5rem; border: 0; border-radius: 0; box-shadow: none;
    opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease);
  }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; }
  .nav__links a { padding: .9rem .4rem; font-size: 1.5rem; text-align: center; color: var(--navy); text-shadow: none; }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__links a.nav__cta {
    margin-top: 1.4rem; font-size: 1.05rem;
    border-color: var(--navy); color: var(--navy);
  }
  .nav__links a.nav__cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
  /* white logo would vanish on the white mobile menu overlay */
  .nav.is-open .nav__brand { visibility: hidden; }
  .nav.is-open .nav__toggle span { background: var(--navy); }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: clamp(1.4rem, 4vw, 2.2rem); }
  .hero__frame { justify-content: flex-end; min-height: clamp(560px, 80vh, 720px); padding-top: clamp(7rem, 24vw, 8.5rem); }
  .hero__img { width: 100%; right: 0; object-position: 70% 24%; }
  .hero__actions { width: 100%; }

  .services { grid-template-columns: 1fr; }
  .hero__offerings {
    position: static; left: auto; right: auto; bottom: auto;
    grid-template-columns: 1fr; grid-auto-rows: 1fr;
  }

  .btn { width: 100%; justify-content: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__col { align-items: center; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: .6rem; }
  .footer__meta { justify-content: center; flex-wrap: wrap; }
  .footer__watermark { width: clamp(160px, 38vw, 240px); right: -1.5rem; bottom: -1.5rem; }
}

@media (max-width: 540px) {
  body { font-size: 1rem; }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .aanpak__badge { right: 0; }
}

/* =========================================================
   EXTRA
   ========================================================= */

input:disabled {
  background: #e9f1fb;
}

textarea:disabled {
  background: #e9f1fb;
}

select:disabled {
  background: #e9f1fb;
}

form {
  background: var(--warm); border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}

body.document {
  background: var(--lgrey);
}

/* ====================================
  DOCUMENT
 ======================================*/

.document > .section { padding: clamp(3rem, 1rem, 4rem) 0 ; }
.document > .section > article > h2 {
  padding: 1rem 0;
  color: var(--navy);
}
.document > .section > article > h3 {
  padding: 0.5rem 0;
  color: var(--navy-soft);
}