/* ==========================================================================
   AKG Administratie — Design System
   Palette derived from pixel-sampled logo colors (see Stage 0 audit):
     dark olive #6d8028 / mid sage #92ac55 / light yellow-green #cadc82
   Deepened toward forest/olive for a premium boutique feel, paired with a
   warm cream background and charcoal-green text.
   Fonts: Playfair Display (headings) + DM Sans (body) — Playfair's editorial
   serif elegance signals boutique/premium without corporate stiffness; DM
   Sans keeps everyday reading warm and approachable. Loaded in <head>.
   ========================================================================== */

:root {
  /* ---- Color: greens (derived from logo HSL ~H75) ---- */
  --forest-900: #333c15;   /* deepest — headings, hero bg, footer bg */
  --forest-800: #45521e;   /* primary buttons */
  --forest-700: #59692b;   /* hover state */
  --sage-500:   #829353;   /* accent / links / icons */
  --sage-300:   #c3cda2;   /* soft accent, borders, dark-section secondary text */
  --sage-100:   #eff2e3;   /* tint background for alternating sections */

  /* ---- Color: neutrals ---- */
  --cream-bg:   #faf9f5;   /* page background */
  --cream-card: #fdfdfc;   /* card surfaces on cream-bg */
  --charcoal:        #272e24; /* body text */
  --charcoal-soft:   #5e6959; /* secondary / muted text */
  --white: #ffffff;
  --border-soft: #e1e0d5;

  /* ---- Typography ---- */
  --font-heading: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  --text-xs:   0.8125rem;
  --text-sm:   0.9375rem;
  --text-base: 1.0625rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  1.875rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.25rem;
  --text-5xl:  4rem;

  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.65;

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

  /* ---- Radius / shadow / motion ---- */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(39, 46, 36, 0.08);
  --shadow-md: 0 8px 24px rgba(39, 46, 36, 0.10);
  --shadow-lg: 0 24px 60px rgba(51, 60, 21, 0.16);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 180ms;
  --duration-base: 280ms;

  --container-max: 1180px;
  --header-h: 84px;
  --header-h-scrolled: 64px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { 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(--cream-bg);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--forest-900);
  line-height: var(--leading-tight);
  font-weight: 600;
}

h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: var(--space-3);
}

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--forest-900);
  color: var(--cream-bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--duration-fast) var(--ease-out);
}
.skip-link:focus {
  top: 1rem;
}

/* ---- Focus states ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2.5px solid var(--sage-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section {
  padding-block: var(--space-9);
}
.section--tint { background: var(--sage-100); }
.section--dark {
  background: var(--forest-900);
  color: var(--sage-300);
}
.section--dark h2, .section--dark h3 { color: var(--cream-bg); }

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-7);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* ---- Reveal-on-scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--text-sm);
  border: 1.5px solid transparent;
  transition: background var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--forest-800);
  color: var(--white);
  border-color: var(--forest-800);
}
.btn--primary:hover { background: var(--forest-700); border-color: var(--forest-700); }

.btn--on-dark {
  background: var(--sage-300);
  color: var(--forest-900);
  border-color: var(--sage-300);
}
.btn--on-dark:hover { background: var(--cream-bg); border-color: var(--cream-bg); }

.btn--outline {
  background: transparent;
  color: var(--forest-900);
  border-color: var(--forest-900);
}
.btn--outline:hover { background: var(--forest-900); color: var(--cream-bg); }

.btn--outline-on-dark {
  background: transparent;
  color: var(--cream-bg);
  border-color: var(--sage-300);
}
.btn--outline-on-dark:hover { background: rgba(250, 249, 245, 0.12); }

.btn--sm { padding: 0.65rem 1.3rem; font-size: var(--text-xs); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-base) var(--ease-out);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: var(--header-h);
  transition: height var(--duration-base) var(--ease-out);
}
.site-header.is-scrolled .site-header__inner {
  height: var(--header-h-scrolled);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.site-header__logo {
  height: 48px;
  width: auto;
  transition: height var(--duration-base) var(--ease-out);
}
.site-header.is-scrolled .site-header__logo { height: 38px; }

.site-header__brandname {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--forest-900);
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.site-nav__link {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--charcoal);
  position: relative;
  padding-block: var(--space-2);
  white-space: nowrap;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--sage-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease-out);
}
.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__link[aria-current="page"] { color: var(--forest-900); }

.site-header__actions { display: flex; align-items: center; gap: var(--space-4); }

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2);
  color: var(--forest-900);
}
.hamburger svg { width: 26px; height: 26px; }

.mobile-nav {
  position: fixed;
  inset: var(--header-h-scrolled) 0 0 0;
  background: var(--cream-bg);
  z-index: 490;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-5);
  gap: var(--space-2);
}
.mobile-nav__link {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--border-soft);
  color: var(--forest-900);
}
.mobile-nav__cta { margin-top: var(--space-6); }

/* Header-only breakpoint: with 6 nav items, the inline nav needs the
   container at its full 1180px cap to fit alongside the brand and CTA
   without crowding (verified: 587px of nav content vs 601px available at
   any viewport >=1180px). Below that, hand off to the hamburger earlier
   than the shared 860px breakpoint used by other sections, rather than
   let items wrap. */
@media (max-width: 1199px) {
  .site-nav__list, .site-header__actions .btn { display: none; }
  .hamburger { display: inline-flex; }
}

/* ==========================================================================
   Hero
   Height and font-size below are hardcoded (not the shared --space-9/10 or
   --text-5xl tokens) so this compact pass stays scoped to the hero only —
   those tokens are still used elsewhere (generic .section padding, etc.)
   and must not shrink site-wide.
   ========================================================================== */
.hero {
  position: relative;
  background: var(--forest-900);
  color: var(--cream-bg);
  overflow: hidden;
  padding-block: 5.5rem 7rem;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: var(--space-7);
}

/* Anchored to the panel-wrap (not the full-bleed hero) so the composition
   stays correctly aligned with the panel at every viewport >=1180px, where
   the container itself is capped at 1180px but the hero keeps growing. */
.hero__shapes {
  position: absolute;
  inset: -70px -50px -50px -50px;
  pointer-events: none;
  z-index: -1;
}
/* Exactly three circles — the AKG mark's own composition (three scales, three
   brand greens) — arranged asymmetrically around the panel so the card and
   the decoration read as one deliberate composition, not card + decoration. */
.hero__orb { position: absolute; border-radius: 50%; }
.hero__orb--lg {
  width: 130px;
  height: 130px;
  right: 39px;
  top: -10px;
  border: 1.5px solid var(--sage-300);
  opacity: 0.4;
}
.hero__orb--md {
  width: 70px;
  height: 70px;
  right: -20px;
  top: -60px;
  background: var(--sage-500);
  filter: blur(1px);
  opacity: 0.22;
}
.hero__orb--sm {
  width: 16px;
  height: 16px;
  right: 426px;
  top: 387px;
  background: var(--sage-300);
  opacity: 0.7;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__content {
  max-width: 650px;
}
.hero .section-eyebrow { color: var(--sage-300); }

.hero h1 {
  color: var(--cream-bg);
  font-size: 3.5rem;
  line-height: 1.12;
  margin-bottom: var(--space-4);
}

.hero__lede {
  font-size: var(--text-lg);
  color: var(--sage-300);
  line-height: var(--leading-snug);
  max-width: 50ch;
  margin-bottom: var(--space-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero__trust {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--sage-300);
  opacity: 0.85;
}
.hero__trust span { margin-inline: var(--space-2); opacity: 0.6; }

/* ---- Information panel ---- */
.hero__panel-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  transform: translateX(-32px);
}
.hero__panel {
  width: 100%;
  max-width: 310px;
  /* A lighter patch of the hero's own olive, not a pasted-on glass card. */
  background: rgba(89, 105, 43, 0.32);
  border: 1px solid rgba(195, 205, 162, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}
.hero__panel-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-300);
  margin-bottom: var(--space-3);
}
.hero__panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero__panel-list li { border-bottom: 1px solid rgba(250, 249, 245, 0.12); }
.hero__panel-list li:last-child { border-bottom: none; }
.hero__panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cream-bg);
  padding-block: var(--space-3);
  transition: color var(--duration-fast) var(--ease-out);
}
.hero__panel-link:hover,
.hero__panel-link:focus-visible {
  color: var(--sage-300);
}
.hero__panel-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.55;
  transform: translateX(0);
  transition: transform var(--duration-fast) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
}
.hero__panel-link:hover .hero__panel-arrow,
.hero__panel-link:focus-visible .hero__panel-arrow {
  transform: translateX(4px);
  opacity: 1;
}
.hero__panel-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(195, 205, 162, 0.2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--sage-300);
  opacity: 0.85;
}
.hero__panel-note-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage-300);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero__panel-link, .hero__panel-arrow { transition: none; }
}

/* ==========================================================================
   Services cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.service-card {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage-300);
}
.service-card__index {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--sage-300);
  font-weight: 600;
}
.service-card h3 { margin-top: var(--space-1); }
.service-card p { color: var(--charcoal-soft); flex-grow: 1; }
.service-card__link {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--forest-800);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.service-card__link svg {
  width: 16px; height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}
.service-card__link:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Why AKG
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: start;
}
.why-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-2xl);
  line-height: var(--leading-snug);
  color: var(--forest-900);
  border-left: 3px solid var(--sage-500);
  padding-left: var(--space-5);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.why-item {
  display: flex;
  gap: var(--space-4);
}
.why-item__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item__icon svg { width: 20px; height: 20px; }
.why-item h4 { font-size: var(--text-base); margin-bottom: var(--space-1); }
.why-item p { color: var(--charcoal-soft); font-size: var(--text-sm); }

/* ==========================================================================
   Over AKG teaser
   ========================================================================== */
.about-teaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-8);
  align-items: center;
}
.about-teaser__mark {
  position: relative;
  aspect-ratio: 1;
  max-width: 320px;
  justify-self: center;
}
.about-teaser__circle {
  position: absolute;
  border-radius: 50%;
}
.about-teaser__circle--1 { width: 62%; height: 62%; left: 0; top: 8%; background: var(--forest-800); }
.about-teaser__circle--2 { width: 54%; height: 54%; right: 2%; top: 0; background: var(--sage-500); opacity: 0.9; }
.about-teaser__circle--3 { width: 46%; height: 46%; right: 10%; bottom: 4%; background: var(--sage-300); }
.about-teaser p + p { margin-top: var(--space-4); }
.about-teaser p { color: var(--charcoal-soft); }

/* ==========================================================================
   Process steps
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-step {
  position: relative;
  padding-top: var(--space-6);
}
.process-step::before {
  content: attr(data-step);
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--sage-300);
  display: block;
  margin-bottom: var(--space-3);
}
.process-step p { color: var(--charcoal-soft); }

/* ==========================================================================
   Digital working
   ========================================================================== */
.digital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.digital-grid__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.digital-grid__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.digital-list { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.digital-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  color: var(--charcoal-soft);
}
.digital-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--sage-500); margin-top: 2px; }

/* ==========================================================================
   Voor wie
   ========================================================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.audience-card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--border-soft);
}
.audience-card__icon {
  width: 56px; height: 56px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--sage-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.audience-card__icon svg { width: 26px; height: 26px; }
.audience-card p { color: var(--charcoal-soft); font-size: var(--text-sm); margin-top: var(--space-2); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--forest-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration-base) var(--ease-out);
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--charcoal-soft);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  text-align: center;
}
.final-cta h2 { max-width: 720px; margin-inline: auto; }
.final-cta__lede {
  max-width: 520px;
  margin: var(--space-4) auto var(--space-7);
  color: var(--sage-300);
}
.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.final-cta__contact {
  margin-top: var(--space-6);
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--text-sm);
}
.final-cta__contact a { color: var(--sage-300); font-weight: 600; }
.final-cta__contact a:hover { color: var(--cream-bg); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--forest-900);
  color: var(--sage-300);
  padding-block: var(--space-8) var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid rgba(195, 205, 162, 0.2);
}
.footer-brand__logo { height: 44px; margin-bottom: var(--space-4); }
.footer-brand p { max-width: 30ch; font-size: var(--text-sm); }
.footer-col h4 {
  color: var(--cream-bg);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: var(--text-sm); }
.footer-col a:hover { color: var(--cream-bg); }
.footer-tel-label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
  margin-bottom: 2px;
}
.footer-bottom {
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(195, 205, 162, 0.7);
}

/* ==========================================================================
   Sub-page hero (Administratie, Salaris, Belastingen, Over AKG, Contact, legal)
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--forest-900);
  color: var(--cream-bg);
  overflow: hidden;
  padding-block: var(--space-8) var(--space-7);
}
.page-hero__shape {
  position: absolute;
  border-radius: 50%;
  right: -100px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 35% 30%, var(--sage-500), var(--forest-700) 70%);
  opacity: 0.45;
  filter: blur(2px);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; max-width: 680px; }
.page-hero .section-eyebrow { color: var(--sage-300); }
.page-hero h1 { color: var(--cream-bg); font-size: var(--text-4xl); margin-bottom: var(--space-4); }
.page-hero__lede { font-size: var(--text-lg); color: var(--sage-300); line-height: var(--leading-snug); max-width: 60ch; }
.page-hero__breadcrumb {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--sage-300);
  opacity: 0.8;
  margin-bottom: var(--space-4);
}
.page-hero__breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.page-hero__breadcrumb a:hover { color: var(--cream-bg); }

/* ---- Topic blocks (icon-led, replaces photo on Belastingen) ---- */
.topic-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  max-width: 760px;
}
.topic-block { display: flex; gap: var(--space-5); }
.topic-block__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--forest-900);
  color: var(--sage-300);
  display: flex;
  align-items: center;
  justify-content: center;
}
.topic-block__icon svg { width: 24px; height: 24px; }
.topic-block h3 { margin-bottom: var(--space-2); }
.topic-block p { color: var(--charcoal-soft); }

/* ---- Task / tips list (used where a photo isn't warranted) ---- */
.task-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 560px;
}
.task-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--charcoal-soft);
}
.task-list li:last-child { border-bottom: none; }
.task-list svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--sage-500); margin-top: 2px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-8);
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: var(--space-5); margin-top: var(--space-6); }
.contact-info-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact-info-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item__icon svg { width: 20px; height: 20px; }
.contact-info-item h4 { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.06em; color: var(--charcoal-soft); margin-bottom: var(--space-1); font-weight: 700; }
.contact-info-item a, .contact-info-item span { font-weight: 600; color: var(--forest-900); }
.contact-info-item a:hover { color: var(--sage-500); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-6);
  border: 1px solid var(--border-soft);
}
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
.map-route-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--forest-800);
}
.map-route-link svg { width: 16px; height: 16px; }

.contact-form {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-field { margin-bottom: var(--space-5); }
.form-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: var(--space-2);
}
.form-field .required { color: var(--sage-500); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--cream-bg);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--duration-fast) var(--ease-out);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage-500);
}
.form-field input:invalid[data-touched="true"],
.form-field textarea:invalid[data-touched="true"] {
  border-color: #b5493f;
}
.form-hint { font-size: var(--text-xs); color: var(--charcoal-soft); margin-top: var(--space-5); }
.form-error {
  font-size: var(--text-xs);
  color: #b5493f;
  margin-top: var(--space-2);
  display: none;
}
.form-field.has-error .form-error { display: block; }
.form-field.has-error input,
.form-field.has-error textarea { border-color: #b5493f; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-7) var(--space-5);
}
.form-success.is-visible { display: block; }
.contact-form.is-submitted .contact-form__fields { display: none; }
.form-success__icon {
  width: 56px; height: 56px;
  margin-inline: auto var(--space-4);
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Legal placeholder pages
   ========================================================================== */
.legal-content {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}
.legal-content__icon {
  width: 56px; height: 56px;
  margin-inline: auto var(--space-5);
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.legal-content p { color: var(--charcoal-soft); }
.legal-content p + p { margin-top: var(--space-4); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --text-5xl: 3.25rem; --text-4xl: 2.75rem; }
  .why-grid, .about-teaser, .digital-grid, .contact-grid, .two-col { grid-template-columns: 1fr; }
  .about-teaser__mark { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero__content { max-width: 100%; }
  .hero h1 { font-size: 2.75rem; }
  /* Stacked layout: the orbs' desktop positions no longer relate to where
     the panel sits, so simplify rather than reposition three shapes twice. */
  .hero__orb { display: none; }
  .hero__panel-wrap { justify-content: flex-start; transform: none; }
  .hero__panel { max-width: 320px; }
}

@media (max-width: 860px) {
  .services-grid, .process-grid, .audience-grid { grid-template-columns: 1fr; }
  .hero, .page-hero { padding-block: var(--space-8) var(--space-7); }
  :root { --text-5xl: 2.5rem; --text-3xl: 2rem; --text-4xl: 2.25rem; }
  .hero h1 { font-size: 2.25rem; }
  .section { padding-block: var(--space-7); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .topic-block { flex-direction: column; }
  .contact-form { padding: var(--space-6) var(--space-5); }
}

/* Below tablet: keep the service links (they're genuinely useful navigation)
   but as a compact full-width block, not a floating card — the decorative
   orbs are already hidden by the 1024px rule above. */
@media (max-width: 640px) {
  .hero__panel { max-width: 100%; padding: var(--space-5); }
}

@media (max-width: 480px) {
  .container { padding-inline: var(--space-4); }
  .hero__actions .btn { width: 100%; }
  .final-cta__actions .btn { width: 100%; }
}
