/*
  Multi Administraties — shared design system
  Static site, no build step. CSS custom properties drive theming.
*/

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ink: #142A32;
  --navy-deep: #17333D;
  --accent-green: #4F866F;       /* decorative / large-text only — 4.22:1 on white, fails AA for body text */
  --accent-green-dark: #356451;  /* safe for small text/links/buttons — 6.79:1 on white */
  --bg-warm: #F7F8F5;
  --surface-green: #EDF3EF;
  --white: #FFFFFF;
  --border: rgba(20, 42, 50, 0.12);
  --border-strong: rgba(20, 42, 50, 0.22);
  --shadow-color: 20, 42, 50;

  /* Typography */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  --fs-h1: clamp(2.35rem, 1.4rem + 3.6vw, 4.1rem);
  --fs-h2: clamp(1.9rem, 1.4rem + 1.9vw, 2.75rem);
  --fs-h3: clamp(1.3rem, 1.1rem + 0.7vw, 1.6rem);
  --fs-h4: clamp(1.1rem, 1rem + 0.3vw, 1.25rem);
  --fs-lead: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8rem;

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-body: 1.7;

  /* Spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 6.5rem;
  --space-4xl: 9rem;

  /* Layout */
  --content-width: 1240px;
  --content-pad: clamp(1.25rem, 4vw, 3rem);

  /* Radius / shadow */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(var(--shadow-color), 0.06), 0 1px 1px rgba(var(--shadow-color), 0.04);
  --shadow-md: 0 8px 24px -8px rgba(var(--shadow-color), 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(var(--shadow-color), 0.28);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-med: 280ms;
  --dur-slow: 480ms;

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100svh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; }

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

/* ---------- Focus states ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2.5px solid var(--accent-green-dark);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { outline-offset: 3px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: var(--space-sm);
  top: -60px;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--dur-fast) var(--ease);
  font-weight: 600;
}
.skip-link:focus { top: var(--space-sm); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }

p { max-width: 62ch; }
p.lead { font-size: var(--fs-lead); line-height: var(--lh-snug); color: var(--ink); max-width: 46ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green-dark);
}
.eyebrow::before {
  content: "";
  width: 1.6em;
  height: 2px;
  background: var(--accent-green-dark);
  border-radius: var(--radius-full);
}

.text-muted { color: rgba(20, 42, 50, 0.68); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--content-pad);
}
main { display: block; }
section { position: relative; }
section[id] { scroll-margin-top: calc(var(--header-h) + 14px); }
.section-pad { padding-block: var(--space-3xl); }
.section-pad-lg { padding-block: var(--space-4xl); }

.section-head {
  max-width: 42rem;
  margin-bottom: var(--space-xl);
}
.section-head h2 { margin-top: var(--space-xs); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center::before { margin-inline: auto; }

.bg-white { background: var(--white); }
.bg-warm { background: var(--bg-warm); }
.bg-surface-green { background: var(--surface-green); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }

.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;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--accent-green-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--ink); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--ink); background: rgba(20,42,50,0.04); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-sm { padding: 0.7rem 1.35rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  /* Solid, opaque white and visibly bordered from the very first frame.
     The page body is --bg-warm; using that same color (even at full
     opacity) for the header left it indistinguishable from the page
     behind it. --white reads as a genuinely separate bar with zero
     dependency on the scroll listener having fired. */
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-med) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.wordmark .mark {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}
.wordmark span.full { white-space: nowrap; }

.main-nav ul { display: flex; align-items: center; gap: var(--space-lg); }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent-green-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--accent-green-dark); }

.header-actions { display: flex; align-items: center; gap: var(--space-md); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.menu-toggle .bars {
  position: relative;
  width: 20px;
  height: 14px;
}
.menu-toggle .bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: var(--radius-full);
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease), top var(--dur-med) var(--ease);
}
.menu-toggle .bars span:nth-child(1) { top: 0; }
.menu-toggle .bars span:nth-child(2) { top: 6px; }
.menu-toggle .bars span:nth-child(3) { top: 12px; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.mobile-nav-panel { display: none; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-actions .btn-primary.desktop-only { display: none; }
  .menu-toggle { display: inline-flex; }

  .mobile-nav-panel {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg-warm);
    z-index: 480;
    padding: var(--space-lg) var(--content-pad) var(--space-xl);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility var(--dur-med);
    overflow-y: auto;
  }
  .mobile-nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-nav-panel ul { display: flex; flex-direction: column; gap: var(--space-2xs); }
  .mobile-nav-panel a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    padding-block: var(--space-xs);
    border-bottom: 1px solid var(--border);
  }
  .mobile-nav-panel .btn { margin-top: var(--space-lg); }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: var(--space-2xl) var(--space-2xl);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-2xl);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: var(--space-md); }
.hero-copy h1 { margin-bottom: var(--space-md); }
.hero-copy p.lead { margin-bottom: var(--space-lg); }
.hero-copy .cta-row { margin-bottom: var(--space-lg); }

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1.1em;
  font-size: var(--fs-small);
  color: rgba(20,42,50,0.72);
}
.trust-line li { display: inline-flex; align-items: center; gap: 0.5em; }
.trust-line .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-green-dark); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.15;
}
.hero-visual .frame img { width: 100%; height: 100%; object-fit: cover; }

.price-card {
  position: absolute;
  left: -1.25rem;
  bottom: -1.5rem;
  width: min(260px, 70%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  border: 1px solid var(--border);
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.price-card .amount small { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; color: var(--text-muted); margin-left: 0.3em; }
.price-card ul { margin-top: var(--space-xs); display: grid; gap: 0.4rem; }
.price-card li { display: flex; gap: 0.5em; font-size: 0.82rem; color: rgba(20,42,50,0.78); line-height: 1.4; }
.price-card li svg { flex-shrink: 0; margin-top: 0.15em; color: var(--accent-green-dark); width: 15px; height: 15px; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 480px; margin-inline: auto; width: 100%; }
  .price-card { position: static; width: 100%; margin-top: var(--space-md); }
}

/* ---------- Trust strip ---------- */
.trust-strip { padding-block: var(--space-xl); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.trust-item { display: flex; gap: var(--space-sm); align-items: flex-start; }
.trust-item .icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--surface-green);
  color: var(--accent-green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item .icon-wrap svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: 1.02rem; margin-bottom: 0.2rem; }
.trust-item p { font-size: var(--fs-small); color: rgba(20,42,50,0.72); }

@media (max-width: 860px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- Intro / editorial split ---------- */
.intro-split .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-2xl);
  align-items: center;
}
.intro-split .copy p { margin-bottom: var(--space-sm); color: rgba(20,42,50,0.82); }
.intro-split .copy p:last-of-type { margin-bottom: 0; }
.intro-split figure .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.intro-split figure img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.intro-split figcaption {
  font-size: var(--fs-small);
  color: rgba(20,42,50,0.6);
  padding: var(--space-sm) var(--space-3xs) 0;
}

@media (max-width: 900px) {
  .intro-split .container { grid-template-columns: 1fr; }
  .intro-split .visual { order: -1; }
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface-green);
  color: var(--accent-green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
}
.service-card .icon-wrap svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p { font-size: var(--fs-small); color: rgba(20,42,50,0.72); max-width: none; }

@media (max-width: 860px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}
.step { position: relative; padding-top: var(--space-md); }
.step .num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; color: rgba(20,42,50,0.75); }
.step-visual {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  max-width: 220px;
}
.step-visual img { width: 100%; aspect-ratio: 3/3.5; object-fit: cover; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}
.price-plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.price-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-plan.is-featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.price-plan.is-featured h3,
.price-plan.is-featured .price-plan-amount { color: var(--white); }
.price-plan.is-featured .text-muted { color: rgba(255,255,255,0.68); }
.price-plan.is-featured li svg { color: #9FD6BC; }
.price-plan.is-featured .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.price-plan.is-featured .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.price-plan h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.price-plan-amount { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; margin-block: var(--space-sm) var(--space-2xs); }
.price-plan-amount small { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; }
.price-plan .range { font-size: var(--fs-small); margin-bottom: var(--space-md); }
.price-plan ul { display: grid; gap: 0.65rem; margin-bottom: var(--space-lg); flex-grow: 1; }
.price-plan li { display: flex; gap: 0.6em; font-size: 0.92rem; line-height: 1.4; }
.price-plan li svg { flex-shrink: 0; margin-top: 0.2em; width: 16px; height: 16px; color: var(--accent-green-dark); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}
.team-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-md);
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.team-card .photo {
  width: 140px; height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.15rem; }
.team-card .role { font-size: var(--fs-small); font-weight: 700; color: var(--accent-green-dark); margin-bottom: 0.6rem; display: block; }
.team-card p.bio { font-size: 0.92rem; color: rgba(20,42,50,0.78); }

@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 96px 1fr; }
  .team-card .photo { width: 96px; height: 96px; }
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.testimonial-card {
  background: var(--surface-green);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}
.testimonial-card:nth-child(2) { margin-top: var(--space-lg); }
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent-green);
  line-height: 0.6;
  margin-bottom: var(--space-sm);
  display: block;
}
.testimonial-card p.quote { font-size: 0.98rem; color: var(--ink); margin-bottom: var(--space-md); flex-grow: 1; max-width: none; }
.testimonial-card footer { font-size: var(--fs-small); }
.testimonial-card footer strong { display: block; font-weight: 700; }
.testimonial-card .badge {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--white);
  color: var(--accent-green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .testimonial-card:nth-child(2) { margin-top: 0; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 48rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-md);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-trigger .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  position: relative;
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.faq-trigger .plus::before, .faq-trigger .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease);
}
.faq-trigger .plus::before { left: 50%; top: 6px; bottom: 6px; width: 1.5px; transform: translateX(-50%); }
.faq-trigger .plus::after { top: 50%; left: 6px; right: 6px; height: 1.5px; transform: translateY(-50%); }
.faq-trigger[aria-expanded="true"] .plus { border-color: var(--accent-green-dark); transform: rotate(45deg); }

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-med) var(--ease);
}
.faq-panel[data-open="true"] { grid-template-rows: 1fr; }
.faq-panel-inner { overflow: hidden; }
.faq-panel p {
  padding-bottom: var(--space-md);
  font-size: 0.95rem;
  color: rgba(20,42,50,0.78);
  max-width: 58ch;
}

/* ---------- Final CTA / contact teaser ---------- */
.final-cta { text-align: center; }
.final-cta .container { max-width: 760px; }
.final-cta h2 { margin-bottom: var(--space-sm); }
.final-cta p.lead { margin-inline: auto; margin-bottom: var(--space-lg); color: rgba(255,255,255,0.82); }
.final-cta .cta-row { justify-content: center; margin-bottom: var(--space-lg); }
.final-cta .contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.75);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-lg);
}
.final-cta .contact-details a { color: var(--white); font-weight: 600; }
.final-cta .contact-details a:hover { text-decoration: underline; }
.final-cta .contact-details li { display: flex; align-items: center; gap: 0.5em; }
.final-cta .contact-details svg { width: 17px; height: 17px; color: #9FD6BC; }

/* ---------- Footer ---------- */
.site-footer { padding-block: var(--space-2xl) var(--space-lg); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--border);
}
.footer-brand .wordmark { margin-bottom: var(--space-sm); }
.footer-brand p { font-size: var(--fs-small); color: rgba(20,42,50,0.7); max-width: 32ch; }
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(20,42,50,0.55);
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent-green-dark); }
.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(20,42,50,0.6);
}
.footer-bottom .credit a { text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

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

/* ---------- Responsive: section rhythm ---------- */
@media (max-width: 640px) {
  :root {
    --space-3xl: 4rem;
    --space-4xl: 5.5rem;
  }
  .section-pad { padding-block: var(--space-2xl); }
}

/* =====================================================================
   Wave 2 — interior pages (Diensten, Tarieven, Over ons, Contact)
   ===================================================================== */

/* ---------- Page hero (smaller than homepage hero) ---------- */
.page-hero {
  padding-block: var(--space-2xl) var(--space-xl);
}
.page-hero .container { max-width: 52rem; }
.page-hero .eyebrow { margin-bottom: var(--space-md); }
.page-hero h1 { margin-bottom: var(--space-md); }
.page-hero p.lead { max-width: 52ch; }
.page-hero .cta-row { margin-top: var(--space-lg); }

/* ---------- Service detail blocks (Diensten) ---------- */
.service-group { margin-bottom: var(--space-2xl); }
.service-group:last-child { margin-bottom: 0; }
.service-group-title {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-green-dark);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--border-strong);
}
.service-detail-list { display: grid; gap: var(--space-lg); }
.service-detail-list.two-col { grid-template-columns: repeat(2, 1fr); }
.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.service-detail .icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--surface-green);
  color: var(--accent-green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail .icon-wrap svg { width: 28px; height: 28px; }
.service-detail h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.service-detail p { max-width: 62ch; color: rgba(20,42,50,0.8); }

@media (max-width: 900px) {
  .service-detail-list.two-col { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .service-detail { grid-template-columns: 1fr; }
}

/* ---------- Comparison table (Tarieven) ---------- */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table caption { text-align: left; margin-bottom: var(--space-sm); font-size: var(--fs-small); color: rgba(20,42,50,0.6); }
.compare-table th, .compare-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.compare-table tbody th {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.compare-table td { color: rgba(20,42,50,0.82); }
.compare-table td .yes { color: var(--accent-green-dark); }
.compare-table td .yes svg { width: 18px; height: 18px; }
.compare-table td .no { color: rgba(20,42,50,0.35); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }

@media (max-width: 640px) {
  .compare-wrap { overflow-x: visible; }
  .compare-table { min-width: 0; }
  .compare-table thead {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .compare-table, .compare-table tbody, .compare-table tr, .compare-table td, .compare-table th, .compare-table caption { display: block; width: 100%; }
  .compare-table caption { white-space: normal; }
  .compare-table tr { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: var(--space-sm); padding: var(--space-sm) var(--space-md); background: var(--white); }
  .compare-table tbody th { border-bottom: 1px solid var(--border); padding-bottom: 0.6rem; margin-bottom: 0.4rem; font-family: var(--font-display); font-size: 1.05rem; white-space: normal; }
  .compare-table td { border: none; padding: 0.35rem 0; display: flex; justify-content: space-between; gap: var(--space-sm); }
  .compare-table td[data-label]::before { content: attr(data-label); font-weight: 600; color: var(--ink); }
}

/* ---------- "Goed om te weten" callouts ---------- */
.info-callouts { display: grid; gap: var(--space-sm); }
.info-callout {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--surface-green);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-green-dark);
}
.info-callout svg { width: 22px; height: 22px; color: var(--accent-green-dark); flex-shrink: 0; margin-top: 0.15em; }
.info-callout p { max-width: none; font-size: 0.95rem; color: rgba(20,42,50,0.85); }

/* ---------- Story section (Over ons) ---------- */
.story .container { max-width: 46rem; }
.story p { max-width: none; color: rgba(20,42,50,0.85); margin-bottom: var(--space-sm); }
.story p:last-child { margin-bottom: 0; }

/* ---------- Values grid (Over ons) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.value-card { text-align: center; padding: var(--space-lg) var(--space-md); }
.value-card .icon-wrap {
  width: 52px; height: 52px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent-green-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
}
.value-card .icon-wrap svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.value-card p { font-size: 0.88rem; color: rgba(20,42,50,0.7); }

@media (max-width: 860px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- Profile blocks (Over ons — larger than homepage team cards) ---------- */
.profile-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.profile-block + .profile-block { margin-top: var(--space-2xl); }
.profile-block .photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.profile-block .photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.profile-block .role { color: var(--accent-green-dark); font-weight: 700; font-size: var(--fs-small); display: block; margin-bottom: 0.6rem; }
.profile-block p.bio { max-width: 56ch; color: rgba(20,42,50,0.82); }

@media (max-width: 700px) {
  .profile-block { grid-template-columns: 1fr; text-align: left; }
  .profile-block .photo { max-width: 220px; }
}

/* ---------- Contact page layout ---------- */
.contact-layout .container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-2xl);
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: sticky;
  top: calc(var(--header-h) + var(--space-lg));
}
.contact-info-card h2 { font-size: 1.5rem; margin-bottom: var(--space-md); }
.contact-info-card ul { display: grid; gap: var(--space-md); margin-bottom: var(--space-md); }
.contact-info-card li { display: flex; gap: 0.7em; align-items: flex-start; font-size: 0.95rem; }
.contact-info-card li svg { width: 19px; height: 19px; color: var(--accent-green-dark); flex-shrink: 0; margin-top: 0.2em; }
.contact-info-card a.maps-link { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 600; color: var(--accent-green-dark); font-size: 0.9rem; margin-top: 0.2rem; }
.contact-info-card a.maps-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .contact-layout .container { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

/* ---------- Form ---------- */
.contact-form { display: grid; gap: var(--space-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.field .optional { font-weight: 400; color: rgba(20,42,50,0.5); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent-green-dark);
  box-shadow: 0 0 0 3px rgba(53, 100, 81, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: #B3452F;
}
.field-error {
  font-size: 0.82rem;
  color: #9A3A26;
  display: none;
}
.field.has-error .field-error { display: block; }

.form-status {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: var(--surface-green); color: var(--accent-green-dark); border: 1px solid rgba(53,100,81,0.25); }
.form-status.is-error { background: #FBEAE6; color: #9A3A26; border: 1px solid rgba(154,58,38,0.25); }

.contact-form button[type="submit"] { margin-top: var(--space-xs); }
.contact-form button[type="submit"][disabled] { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
