/* Design tokens, ported from design/redesign mockup. */
:root {
  --cream: #fcf7ee;
  --ink: #2a2622;
  --ink-soft: #473f36;
  --body: #514a40;
  --forest: #37543e;
  --forest-dark: #24382b;
  --forest-darker: #24382b;
  --rust: #b05f30;
  --rust-dark: #8f4a24;
  --sage: #e6ede0;
  --sage-border: #d7e0d3;
  --sand: #f3e8d6;
  --tan: #efe2cd;
  --tan-border: #e2d3bd;
  --taupe: #6a6255;
  --taupe-light: #8e8576;
  --gold: #c8a374;
  --surface: #fffdf8;
}

/* Cross-document view transitions: a native crossfade between pages on
   same-origin navigation. Zero JS, no router — unsupported browsers just
   keep the normal instant page load (progressive enhancement). */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.32s;
  animation-timing-function: ease;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

h1, h2, h3 {
  font-family: "Newsreader", serif;
  margin: 0;
  font-weight: 400;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--rust);
  text-decoration: none;
}

a:hover {
  color: var(--rust-dark);
}

input, textarea, select, button {
  font-family: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 60;
  border-radius: 8px;
  background: var(--forest);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

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

/* Scroll-reveal: fades/slides content in as it enters the viewport (wired up
   in main.js). Elements without JS, or with reduced-motion on, just show. */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 247, 238, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tan);
}

.site-header .wrap {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  /* nowrap on purpose: the logo (flex: none below) always keeps its own
     size and position on the left; nav-row (flex: 1 1 auto below) takes
     exactly what's left on the right, however much that is. */
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
  color: var(--ink);
}

.logo:hover {
  color: var(--ink);
}

.logo__badge {
  width: 36px;
  height: 36px;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: "Newsreader", serif;
  font-size: 20px;
  font-weight: 500;
  flex: none;
}

.logo__name {
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Logo stays pinned left (flex: none on .logo); this row takes the rest
   of the header and pushes its own content — links + search icon —
   all the way to the right. If that content doesn't fit on one line it
   wraps to a second line (still right-aligned) instead of overlapping
   the logo or getting clipped. Plain overflow-x scrolling was tried here
   first, but overflow-x: auto also forces overflow-y to clip, which hid
   the "Aanbod" dropdown panel — wrapping avoids that trade-off entirely. */
.nav-row {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

/* <nav> only needs to exist for its landmark semantics; display: contents
   drops its own box so Home/Over mij/etc. become direct flex items of
   .nav-row (and wrap together with the dropdown and search icon). */
.nav {
  display: contents;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--taupe);
  background: transparent;
  flex: none;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--forest);
  background: #eff2ea;
}

.nav__link.is-active {
  color: var(--forest);
  font-weight: 600;
  background: var(--sage);
}

/* "Aanbod" dropdown: native <details>/<summary>, no JS needed. Setting
   display: inline-flex on the summary (via the shared .nav__link class)
   already removes the browser's default disclosure triangle. */
.nav-dropdown {
  position: relative;
  flex: none;
}

.nav-dropdown__trigger {
  cursor: pointer;
}

.nav-dropdown__trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.nav-dropdown[open] .nav-dropdown__trigger::after {
  transform: rotate(-135deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  padding: 6px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--tan);
  box-shadow: 0 12px 28px rgba(36, 56, 43, 0.16);
}

.nav-dropdown__link {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--taupe);
  white-space: nowrap;
}

.nav-dropdown__link:hover {
  color: var(--forest);
  background: #eff2ea;
}

.nav-dropdown__link.is-active {
  color: var(--forest);
  font-weight: 600;
  background: var(--sage);
}

/* Subtle fade, JS-only (see the .js class in main.js): a no-JS click still
   opens the menu instantly via the plain rule above, since nothing here
   would ever add .is-visible to reveal it if this weren't gated. */
.js .nav-dropdown__menu {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.js .nav-dropdown.is-visible .nav-dropdown__menu {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .nav-dropdown__menu {
    transition: none;
  }
}

/* Search + menu icon buttons, shared look. */
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: none;
  border: none;
  padding: 0;
  color: var(--taupe);
  background: transparent;
  cursor: pointer;
}

.icon-btn:hover {
  color: var(--forest);
}

.icon-btn__icon {
  width: 19px;
  height: 19px;
}

/* Hamburger toggle: hidden by default (the nav fits on one line/wraps on
   its own, see .nav-row above); the media query below is the one place the
   nav switches to a real collapsible panel instead of wrapping. */
.nav-toggle {
  display: none;
}

/* Row order: mobile reads search then menu left to right. The nav/offering
   items don't need an order here — they're either hidden or rendered
   inside their own absolutely-positioned panel at this width, never a
   sibling of these icon buttons in the row. */
#search-toggle {
  order: 1;
}

.nav-toggle {
  order: 2;
}

@media (min-width: 760px) {
  .nav__link,
  .offering-dropdown {
    order: 1;
  }

  #search-toggle {
    order: 2;
  }
}

@media (max-width: 759px) {
  .nav-toggle {
    display: inline-flex;
  }

  /* Collapses the nav into a dropdown panel under the header, toggled by
     #nav-toggle in main.js (JS, not the native-details trick used for
     "Aanbod" above, since this has to force-open at the wider breakpoint
     too — a plain class toggle is the reliable way to do that). */
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 5;
    padding: 10px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--tan);
    box-shadow: 0 12px 28px rgba(36, 56, 43, 0.16);
  }

  .nav.is-open {
    display: flex;
  }

  /* The nested "Aanbod" dropdown floats absolutely on desktop; inside the
     mobile panel it should just sit inline instead of overlapping the
     links below it. */
  .nav-dropdown__menu {
    position: static;
    margin-top: 4px;
    border: none;
    box-shadow: none;
    background: transparent;
  }
}

/* ---------- Search ---------- */
.search-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  justify-content: center;
  padding: 12vh 20px 20px;
  background: rgba(36, 56, 43, 0.28);
}

/* [hidden] on its own would lose to the plain .search-panel rule above
   (author CSS always beats the browser's built-in [hidden] styling,
   hidden or not) — this is what actually keeps the panel closed until
   main.js clears the attribute. */
.search-panel:not([hidden]) {
  display: flex;
}

.search-panel__box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 560px;
  height: fit-content;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(36, 56, 43, 0.28);
}

.search-panel__input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  font-size: 1.05rem;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
}

.search-panel__input:focus {
  outline: none;
}

/* The browser's own clear-button (a grey circled X) doesn't match the
   site's styling — #search-close already covers that job. */
.search-panel__input::-webkit-search-cancel-button,
.search-panel__input::-webkit-search-decoration {
  -webkit-appearance: none;
  display: none;
}

.search-panel__results {
  position: absolute;
  top: calc(12vh + 56px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 560px;
  margin: 8px 0 0;
  padding: 8px;
  list-style: none;
  max-height: 55vh;
  overflow-y: auto;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 20px 48px rgba(36, 56, 43, 0.28);
}

.search-panel__results:empty {
  display: none;
}

.search-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 12px;
}

a.search-result:hover {
  background: var(--sage);
}

.search-result__page {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
}

.search-result__snippet {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.search-result--empty {
  color: var(--taupe);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--forest);
  color: #f6f9f3;
}

.btn--primary:hover {
  background: var(--forest-darker);
  color: #f6f9f3;
}

.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--tan-border);
}

.btn--secondary:hover {
  color: var(--ink);
  border-color: #c9b394;
}

/* The hero sits on a colored gradient, so its secondary CTA goes ghost
   instead of the opaque card treatment used elsewhere. */
.hero .btn--secondary {
  background: transparent;
  color: var(--forest);
  border-color: #b9c4b2;
}

.hero .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest-dark);
  border-color: #b9c4b2;
}

/* ---------- Page header band ---------- */
.page-header {
  background: radial-gradient(110% 90% at 80% 0%, var(--sand) 0%, #f7efe2 50%, var(--cream) 100%);
  border-radius: 0 0 46% 46% / 0 0 10% 10%;
  overflow: hidden;
}

.page-header--sage {
  background: radial-gradient(110% 90% at 20% 0%, var(--sage) 0%, #eef1e6 55%, var(--cream) 100%);
}

.page-header .wrap {
  padding-top: 72px;
  padding-bottom: 96px;
}

/* Italic serif pretitle, shared with the trust band and the homepage's
   pillar-teaser pretitle (page-eyebrow--gold). */
.page-eyebrow {
  margin: 0 0 16px;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rust);
}

.page-eyebrow--forest {
  color: var(--forest);
}

.page-eyebrow--gold {
  color: var(--gold);
}

.page-title {
  font-size: clamp(2.2rem, 4.6vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--forest-dark);
  max-width: 22ch;
}

.page-intro {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

.specialisms {
  margin-top: 28px;
}

.specialisms p {
  margin: 0 0 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--tan-border);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.page-header__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 40px;
  align-items: center;
}

.portrait {
  width: 100%;
  max-width: 320px;
}

.portrait-name {
  margin: 18px 0 0;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--forest-dark);
  text-align: center;
}

.portrait-name a {
  color: inherit;
}

.portrait-name a:hover {
  color: var(--rust);
}

.portrait-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: 52% 48% 44% 56% / 42% 44% 56% 58%;
  background: linear-gradient(160deg, var(--sage) 0%, var(--sand) 100%);
  border: 1px solid var(--tan-border);
  box-shadow: 0 30px 56px -38px rgba(55, 84, 62, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.portrait-frame--photo {
  background-image: url("../img/stefan-kastanja.jpg");
  background-size: cover;
  background-position: top center;
  -webkit-user-select: none;
  user-select: none;
}

/* ---------- Hero (home) ---------- */
.hero {
  background: radial-gradient(120% 90% at 12% 0%, var(--sage) 0%, #f1ead9 46%, var(--cream) 100%);
  /* Organic scalloped edge where the hero meets the next section. */
  border-radius: 0 0 46% 46% / 0 0 11% 11%;
  overflow: hidden;
}

.hero .wrap {
  padding-top: 72px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 52px;
  align-items: center;
}

.hero-eyebrow {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 7px 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--forest-dark);
  max-width: 22ch;
}

.hero-title em {
  font-style: italic;
  color: var(--rust);
}

.hero-intro {
  margin: 26px 0 0;
  max-width: 36ch;
  font-size: 1.16rem;
  line-height: 1.72;
  color: var(--body);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}

/* Decorative botanical line illustration (a chestnut leaf, on brand for
   "Kastanja") tucked behind the values card — purely ornamental. */
.hero-leaf-badge {
  position: absolute;
  top: -34px;
  right: -14px;
  width: 130px;
  height: 130px;
  border-radius: 62% 38% 46% 54% / 54% 46% 58% 42%;
  background-color: #f5eee1;
  background-image: repeating-linear-gradient(48deg, #e0d3bd 0 2px, transparent 2px 9px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.hero-leaf-badge svg {
  width: 60px;
  height: 60px;
  color: var(--rust);
}

.values-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 44px 30px 44px 34px;
  padding: 38px 36px;
  box-shadow: 0 32px 60px -40px rgba(55, 84, 62, 0.4);
}

.values-card h2 {
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--forest-dark);
}

.values-list {
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-dot {
  margin-top: 6px;
  flex: none;
  width: 13px;
  height: 13px;
  border-radius: 62% 38% 46% 54% / 54% 46% 58% 42%;
  background: var(--rust);
}

.value-item:nth-child(2) .value-dot {
  border-radius: 46% 54% 62% 38% / 42% 58% 46% 54%;
  background: var(--gold);
}

.value-item:nth-child(3) .value-dot {
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: #7d9578;
}

.value-item:nth-child(4) .value-dot {
  border-radius: 52% 48% 38% 62% / 58% 42% 54% 46%;
}

.value-item dt {
  font-family: "Newsreader", serif;
  color: var(--forest);
  font-size: 1.18rem;
}

.value-item dd {
  margin: 2px 0 0;
  color: var(--taupe);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ---------- Pillars teaser (home) ---------- */
.section {
  background: var(--cream);
}

.section .wrap {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-heading {
  max-width: 60ch;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--forest-dark);
}

.section-heading p {
  margin: 20px 0 0;
  font-size: 1.1rem;
  color: var(--body);
}

.pillar-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr));
  gap: 22px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 38px 26px 38px 26px;
  padding: 32px 30px;
  color: var(--ink);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.4s;
}

.pillar-card:nth-child(even) {
  border-radius: 26px 38px 26px 38px;
}

.pillar-card:hover {
  color: var(--ink);
  border-color: #e0cdae;
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -34px rgba(55, 84, 62, 0.45);
}

.pillar-badge {
  width: 46px;
  height: 46px;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: var(--sage);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.pillar-badge svg {
  width: 22px;
  height: 22px;
}

.pillar-card:nth-child(even) .pillar-badge {
  background: var(--sand);
  color: var(--rust-dark);
}

.pillar-card:nth-child(2) .pillar-badge {
  border-radius: 46% 54% 62% 38% / 42% 58% 46% 54%;
}

.pillar-card:nth-child(3) .pillar-badge {
  border-radius: 58% 42% 38% 62% / 52% 48% 54% 46%;
}

.pillar-card:nth-child(4) .pillar-badge {
  border-radius: 52% 48% 58% 42% / 46% 54% 42% 58%;
}

.pillar-card h3 {
  margin-top: 22px;
  font-size: 1.4rem;
  line-height: 1.18;
  color: var(--forest-dark);
}

.pillar-card p {
  margin: 12px 0 0;
  color: var(--taupe);
  font-size: 0.98rem;
  line-height: 1.62;
  flex: 1;
}

.pillar-readmore {
  margin-top: 22px;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--rust);
}

/* ---------- Trust band (home) ---------- */
.trust {
  position: relative;
  background: var(--forest);
  color: #eef3ee;
  margin: 0 20px;
  border-radius: 56px;
  overflow: hidden;
}

/* Subtle dot-grid texture over the forest band. */
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.trust .wrap {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 44px;
  align-items: center;
}

.trust h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.14;
  color: #f6f9f3;
}

.trust p {
  margin: 20px 0 0;
  color: #c8d5c6;
  font-size: 1.06rem;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 26px 16px 26px 16px;
  padding: 17px 22px;
}

.trust-list li:nth-child(even) {
  border-radius: 16px 26px 16px 26px;
}

.check {
  flex: none;
  font-weight: 700;
}

.check--gold {
  color: var(--gold);
  margin-top: 2px;
}

.trust-list span:last-child {
  color: #e5ece3;
  font-size: 1rem;
  line-height: 1.55;
}

/* ---------- Final CTA (home) ---------- */
.final-cta {
  position: relative;
  background: var(--sand);
  border-radius: 64px 40px 64px 40px;
  padding: clamp(40px, 5.5vw, 72px);
  text-align: center;
  overflow: hidden;
}

/* Decorative hatched blob accent tucked into the corner. */
.final-cta::before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -46px;
  width: 170px;
  height: 170px;
  border-radius: 52% 48% 38% 62% / 58% 42% 54% 46%;
  background-image: repeating-linear-gradient(140deg, #e3d4bb 0 2px, transparent 2px 10px);
}

.final-cta h2 {
  position: relative;
  margin: 0 auto;
  max-width: 24ch;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  color: var(--forest-dark);
}

.final-cta h2 em {
  font-style: italic;
  color: var(--rust);
}

.final-cta p {
  position: relative;
  margin: 20px auto 0;
  max-width: 52ch;
  color: var(--body);
  font-size: 1.1rem;
}

.final-actions {
  position: relative;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Over mij ---------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 48px;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.vision-box {
  margin-top: 8px;
  background: var(--sage);
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vision-box h2 {
  font-size: 1.5rem;
  line-height: 1.24;
  color: var(--forest-dark);
}

.vision-box h2 em {
  font-style: italic;
  color: var(--rust-dark);
}

.vision-box p {
  margin: 0;
  color: #44503f;
  line-height: 1.72;
}

/* ---------- Methodieken (Over mij) ---------- */
.methods-band {
  position: relative;
  background: var(--sand);
  border-radius: 56px;
  margin: 0 20px 40px;
  overflow: hidden;
}

.methods-band .wrap {
  padding-top: 80px;
  padding-bottom: 80px;
}

.methods-intro {
  max-width: 56ch;
}

.methods-intro h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--forest-dark);
}

.methods-intro p {
  margin: 18px 0 0;
  font-size: 1.08rem;
  color: var(--body);
}

.methods-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr));
  gap: 20px;
}

.method-card {
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 34px 22px 34px 22px;
  padding: 30px;
}

.method-card:nth-child(even) {
  border-radius: 22px 34px 22px 34px;
}

.method-card h3 {
  font-size: 1.3rem;
  line-height: 1.22;
  color: var(--forest-dark);
}

.method-card p {
  margin: 12px 0 0;
  color: var(--taupe);
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-aside {
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 38px 26px 38px 26px;
  padding: 34px;
  box-shadow: 0 30px 56px -42px rgba(55, 84, 62, 0.4);
}

.about-aside h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
  color: var(--forest-dark);
}

.checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.check--rust {
  color: var(--rust);
  margin-top: 2px;
}

.checklist span:last-child {
  color: var(--body);
  line-height: 1.55;
}

.about-aside__extra {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #f0e6d6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.region-block__label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--taupe-light);
}

.region-block__value {
  margin: 7px 0 0;
  font-family: "Newsreader", serif;
  font-size: 1.28rem;
  line-height: 1.4;
  color: var(--forest);
}

.region-block__value--plain {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.about-aside-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about-aside-col .about-aside {
  align-self: stretch;
}

/* ---------- Ambulante begeleiding (services) ---------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  scroll-margin-top: 90px;
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 52px 30px 52px 30px;
  padding: clamp(30px, 3.6vw, 46px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 38px;
}

.service-card:nth-child(even) {
  border-radius: 30px 52px 30px 52px;
}

.service-badge {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: var(--sage);
  color: var(--forest);
  align-items: center;
  justify-content: center;
}

.service-badge svg {
  width: 26px;
  height: 26px;
}

.service-card:nth-child(even) .service-badge {
  background: var(--sand);
  color: var(--rust-dark);
}

.service-card:nth-child(2) .service-badge {
  border-radius: 46% 54% 62% 38% / 42% 58% 46% 54%;
}

.service-card:nth-child(3) .service-badge {
  border-radius: 58% 42% 38% 62% / 52% 48% 54% 46%;
}

.service-card:nth-child(4) .service-badge {
  border-radius: 52% 48% 58% 42% / 46% 54% 42% 58%;
}

.service-card h2 {
  margin: 22px 0 0;
  font-size: 1.7rem;
  line-height: 1.14;
  color: var(--forest-dark);
}

.service-card > div:first-child > p {
  margin: 14px 0 0;
  color: var(--taupe);
  line-height: 1.68;
}

.service-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: center;
}

.service-bullets li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.bullet-dot {
  margin-top: 9px;
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 62% 38% 46% 54% / 54% 46% 58% 42%;
  background: var(--rust);
}

.service-bullets li:nth-child(2) .bullet-dot {
  border-radius: 46% 54% 62% 38% / 42% 58% 46% 54%;
  background: var(--gold);
}

.service-bullets li:nth-child(3) .bullet-dot {
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: #7d9578;
}

.service-bullets span:last-child {
  color: var(--ink-soft);
  line-height: 1.6;
}

.service-cta {
  margin-top: 44px;
  text-align: center;
}

/* ---------- Voor opdrachtgevers ---------- */
.contractor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 26px;
  align-items: start;
}

.contractor-card {
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 44px 28px 44px 28px;
  padding: 38px 36px;
}

.contractor-card--dark {
  background: var(--forest);
  color: #eef3ee;
  border: none;
  border-radius: 28px 44px 28px 44px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}

.contractor-card h2 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  color: var(--forest-dark);
}

.contractor-card--dark h2 {
  color: #f6f9f3;
}

.deploy-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.deploy-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.deploy-marker {
  margin-top: 1px;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: var(--sage);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.deploy-list li:nth-child(2) .deploy-marker {
  border-radius: 46% 54% 62% 38% / 42% 58% 46% 54%;
}

.deploy-list li:nth-child(3) .deploy-marker {
  border-radius: 52% 48% 38% 62% / 58% 42% 54% 46%;
}

.deploy-list span:last-child {
  color: var(--ink-soft);
  line-height: 1.6;
}

.contractor-card--dark .checklist span:last-child {
  color: #e5ece3;
}

.collab-banner {
  margin-top: 28px;
  background: var(--sage);
  border-radius: 52px 30px 52px 30px;
  padding: 38px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 26px;
  align-items: center;
}

.collab-banner h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  color: var(--forest-dark);
}

.collab-banner p {
  margin: 0;
  color: #44503f;
  line-height: 1.6;
}

.collab-banner__cta {
  justify-self: start;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 44px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 30px 18px 30px 18px;
  padding: 20px 24px;
  color: var(--ink);
}

.info-card:nth-child(even) {
  border-radius: 18px 30px 18px 30px;
}

.info-card:hover {
  border-color: #dcc6a5;
}

.info-icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: var(--sage);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

.info-card:nth-child(2) .info-icon {
  border-radius: 46% 54% 62% 38% / 42% 58% 46% 54%;
}

.info-card:nth-child(3) .info-icon {
  border-radius: 52% 48% 38% 62% / 58% 42% 54% 46%;
}

.info-card__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--taupe-light);
}

.info-card__value {
  font-family: "Newsreader", serif;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--forest-dark);
}

.disclaimers {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.disclaimer {
  margin: 0;
  border-left: 3px solid var(--rust);
  background: var(--sand);
  border-radius: 6px 22px 22px 6px;
  padding: 16px 20px;
  font-family: "Newsreader", serif;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--taupe);
  line-height: 1.6;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 48px 30px 48px 30px;
  padding: clamp(28px, 3.6vw, 42px);
  box-shadow: 0 30px 56px -42px rgba(55, 84, 62, 0.4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 16px;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a352e;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--tan-border);
  border-radius: 16px;
  padding: 13px 16px;
  font-size: 1rem;
  color: var(--ink);
  background: #fdfaf4;
}

.field textarea {
  border-radius: 20px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: none;
  box-shadow: 0 0 0 3px rgba(55, 84, 62, 0.12);
}

.form-submit {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.thanks {
  text-align: center;
  padding: 30px 6px;
}

.thanks__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.thanks h2 {
  margin: 20px 0 0;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--forest-dark);
}

.thanks p {
  margin: 10px 0 0;
  color: var(--taupe);
}

.form-error {
  margin: 0 0 4px;
  color: var(--rust-dark);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--forest-dark);
  color: #c6d3c5;
  border-radius: 56px 56px 0 0;
  margin-top: -1px;
  overflow: hidden;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 36px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-logo__badge {
  width: 34px;
  height: 34px;
  border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%;
  background: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: "Newsreader", serif;
  font-size: 18px;
  font-weight: 600;
  flex: none;
}

.footer-logo__name {
  font-family: "Newsreader", serif;
  font-size: 21px;
  font-weight: 500;
  color: #f3f6f0;
}

.footer-blurb {
  margin: 18px 0 0;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #a4b3a5;
}

/* Italic serif pretitle, matching .page-eyebrow's convention elsewhere. */
.footer-heading {
  margin: 0 0 16px;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 0.95rem;
}

.footer-list a {
  color: #c6d3c5;
}

.footer-list a:hover {
  color: #f3f6f0;
}

.footer-list li:not(:has(a)) {
  color: #a4b3a5;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #8a9c8c;
}

.footer-bottom a {
  color: #8a9c8c;
}

.footer-bottom a:hover {
  color: #f3f6f0;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

/* ---------- Privacy / AVG page ---------- */
.legal-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 26px;
  align-items: start;
}

.legal-col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--tan);
  border-radius: 20px;
  padding: clamp(26px, 3.5vw, 40px);
}

.legal-card h2 {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--forest-dark);
}

.legal-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-card--sage {
  background: var(--sage);
  border: none;
}

.legal-card--dark {
  background: var(--forest);
  color: #eef3ee;
  border: none;
}

.legal-card--dark h2 {
  color: #f6f9f3;
}

.legal-arrow-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.legal-arrow-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  line-height: 1.5;
}

.legal-arrow-list .arrow {
  margin-top: 2px;
  flex: none;
  color: var(--gold);
  font-weight: 700;
}

.company-grid {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 16px;
}

.company-grid > div {
  min-width: 0;
}

.company-grid dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--taupe-light);
}

.company-grid dd {
  margin: 4px 0 0;
  font-family: "Newsreader", serif;
  font-size: 1.05rem;
  color: var(--forest-dark);
  overflow-wrap: break-word;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.95rem;
}

.legal-table th {
  text-align: left;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--taupe-light);
  padding: 0 16px 10px 0;
  border-bottom: 1px solid var(--tan);
}

.legal-table td {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--tan);
  color: var(--ink-soft);
  vertical-align: top;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- WhatsApp button ---------- */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, background 0.15s ease;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: #1ebe5d;
  color: #fff;
  transform: scale(1.06);
  outline: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 3px rgba(37, 211, 102, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab {
    transition: none;
  }
}

