:root {
  --ink: #14201f;
  --ink-muted: #536360;
  --paper: #fbfaf6;
  --paper-strong: #ffffff;
  --line: #dce5df;
  --teal: #0f6f6a;
  --teal-dark: #063c3a;
  --teal-soft: #dcefed;
  --coral: #d66f56;
  --coral-soft: #fae0d8;
  --sage: #7b967f;
  --gold: #c79642;
  --shadow: 0 24px 64px rgba(15, 55, 52, 0.18);
  --shadow-soft: 0 16px 44px rgba(20, 32, 31, 0.08);
  --shadow-lift: 0 28px 74px rgba(15, 55, 52, 0.22);
  --radius: 8px;
  --shell: min(1120px, calc(100vw - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(214, 111, 86, 0.26);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #fbfaf6 0%, #f3f7f1 48%, #fbfaf6 100%);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(214, 111, 86, 0.72);
  outline-offset: 3px;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(20, 32, 31, 0.08);
  box-shadow: 0 10px 34px rgba(20, 32, 31, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24),
    0 10px 24px rgba(4, 28, 27, 0.2);
}

.logo-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header.is-scrolled .brand-mark,
.site-header.menu-active .brand-mark {
  box-shadow: 0 0 0 1px rgba(15, 111, 106, 0.15);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.76;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links > a:not(.nav-cta):hover::after,
.nav-links > a:not(.nav-cta):focus-visible::after,
.nav-links > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 18px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 16px 30px rgba(214, 111, 86, 0.22);
}

.button {
  padding: 0 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 28px rgba(15, 111, 106, 0.28);
}

.button.primary.dark {
  background: var(--ink);
  box-shadow: none;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 18px 38px rgba(214, 111, 86, 0.3);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 38px rgba(15, 111, 106, 0.28);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.23);
  box-shadow: 0 18px 38px rgba(4, 28, 27, 0.18);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.hero {
  position: relative;
  min-height: clamp(460px, 82svh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 128px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(251, 250, 246, 0), rgba(251, 250, 246, 0.08));
}

.page-hero {
  min-height: clamp(360px, 56svh, 560px);
}

.hero-media {
  position: absolute;
  inset: 0;

  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}


body:not(.vacancy-detail-page) .hero-media {
  background-image: image-set(
    url("assets/hero-zorgadvies-desktop.avif") type("image/avif"),
    url("assets/hero-zorgadvies-desktop.webp") type("image/webp"),
    url("assets/hero-zorgadvies-desktop.jpg") type("image/jpeg")
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 34, 33, 0.91) 0%, rgba(5, 34, 33, 0.68) 42%, rgba(5, 34, 33, 0.18) 76%),
    linear-gradient(180deg, rgba(20, 32, 31, 0.2) 0%, rgba(20, 32, 31, 0.05) 48%, rgba(20, 32, 31, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 76px;
}


.hero:not(.page-hero) .hero-content {
  padding-bottom: 88px;
}
.page-hero .hero-content {
  padding-top: 104px;
  padding-bottom: 56px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd4c8;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 740px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.signal-band {
  position: relative;
  z-index: 2;
  margin-top: -56px;
  background: transparent;
  border-bottom: 0;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.signal-grid article {
  min-height: 138px;
  padding: 28px;
  background: var(--paper-strong);
  transition: background 160ms ease, transform 160ms ease;
}

.signal-grid article:hover {
  background: #fbfffd;
}

.signal-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 850;
}

.signal-grid strong {
  display: block;
  font-size: 1.05rem;
}

.signal-grid p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.section {
  padding: clamp(70px, 10vw, 124px) 0;
}

.services,
.contact {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(251, 250, 246, 0.95));
}

.section-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading::after {
  content: "";
  width: 74px;
  height: 3px;
  display: block;
  margin-top: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
}

.section-heading.compact {
  max-width: 560px;
  margin-bottom: 0;
}

.section-heading.compact::after {
  display: none;
}

.section-heading p,
.focus-layout p,
.process-layout p,
.intro-copy p,
.detail-card p,
.text-block p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro-copy {
  max-width: 780px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.detail-card h3 {
  margin-bottom: 12px;
}

.detail-card p {
  margin: 0;
}

.detail-card .eyebrow {
  margin-bottom: 10px;
}

.trust-grid,
.article-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card,
.article-card,
.route-card,
.quote-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.detail-card:hover,
.trust-card:hover,
.article-card:hover,
.route-card:hover,
.quote-card:hover,
.service-card:hover {
  border-color: rgba(15, 111, 106, 0.28);
  box-shadow: 0 22px 56px rgba(20, 32, 31, 0.12);
  transform: translateY(-2px);
}

.trust-card strong,
.article-card strong,
.route-card strong,
.quote-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.trust-card p,
.article-card p,
.route-card p,
.quote-card p,
.case-card p,
.service-detail p,
.article-body p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.7;
}

.quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #eef7f5;
  border-color: rgba(15, 111, 106, 0.24);
}

.quote-card::before {
  content: "";
  width: 34px;
  height: 3px;
  display: block;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--coral);
}

.quote-card p {
  color: var(--ink);
  font-size: 1.1rem;
}

.quote-card cite {
  display: block;
  min-height: 64px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink-muted);
  font-style: normal;
  font-weight: 750;
  line-height: 1.4;
}

.case-card {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #14201f 0%, #0f3f3d 62%, #185c57 100%);
  color: #fff;
  box-shadow: var(--shadow-lift);
}

.case-card p,
.case-card .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.case-card h2 {
  max-width: 820px;
}

.case-card .button {
  width: fit-content;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.service-detail aside {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.service-detail aside h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.route-card {
  display: grid;
  gap: 14px;
}

.route-card .button,
.article-card .button {
  width: fit-content;
  margin-top: 4px;
}

.article-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  gap: 14px;
}

.article-card p {
  margin-bottom: auto;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.article-body p + p {
  margin-top: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.proof-strip div {
  min-height: 132px;
  padding: 24px;
  background: var(--paper-strong);
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.proof-strip span {
  color: var(--ink-muted);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: start;
}

.expect-section .text-block h2 {
  max-width: 620px;
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.page-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  line-height: 1.6;
}

.page-list .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 4px;
  color: var(--teal);
  stroke-width: 2.4;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid-centered {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-grid-centered .service-card {
  grid-column: span 2;
}

.service-grid-centered .service-card:nth-last-child(2) {
  grid-column: 2 / span 2;
}

.service-grid-centered .service-card:last-child {
  grid-column: 4 / span 2;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--teal);
}

.service-card.accent {
  border-color: rgba(15, 111, 106, 0.28);
  background:
    linear-gradient(180deg, #eef7f5 0%, #ffffff 100%);
}

.service-card.accent::before {
  background: var(--coral);
}

.service-card:hover,
.service-card:focus-within {
  background:
    linear-gradient(180deg, #eef7f5 0%, #ffffff 100%);
}

.vacancy-card:hover,
.vacancy-card:focus-within {
  border-color: rgba(15, 111, 106, 0.28);
}

.vacancy-card:hover::before,
.vacancy-card:focus-within::before {
  background: var(--coral);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal-soft), #fff7f4);
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(15, 111, 106, 0.08);
}

.service-card h3 {
  margin-bottom: 12px;
}

.vacancy-card h3 {
  margin-top: 0;
}

.vacancy-work-types {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 2px 0 18px;
}

.vacancy-work-types span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid rgba(15, 111, 106, 0.28);
  border-radius: 6px;
  background: #f2fbf9;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(15, 111, 106, 0.08);
}

.service-card p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  line-height: 1.45;
}

.service-card li .icon {
  width: 1rem;
  height: 1rem;
  margin-top: 3px;
  color: var(--teal);
  stroke-width: 2.4;
}

.service-card .button {
  width: fit-content;
  margin-top: 22px;
}

.process-band {
  background:
    linear-gradient(180deg, #e9eee7 0%, #f2f5ee 100%);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(20, 32, 31, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(20, 32, 31, 0.05);
  overflow: hidden;
}

.process-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--coral));
}

.process-list span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.process-list p {
  margin: 0;
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.focus-layout h2 {
  margin-bottom: 20px;
}

.sector-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sector-route {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  gap: 4px 14px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.sector-route::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--coral));
}

.sector-route > span {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 111, 106, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal-soft), #fff7f4);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.sector-route strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.15;
}

.sector-route small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

a.sector-route:hover,
a.sector-route:focus-visible {
  border-color: rgba(15, 111, 106, 0.28);
  background: linear-gradient(180deg, #eef7f5 0%, #ffffff 100%);
  box-shadow: 0 22px 56px rgba(20, 32, 31, 0.12);
}

.sector-route-muted {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.cta-section {
  padding: 58px 0;
  background:
    linear-gradient(135deg, var(--teal-dark), var(--teal) 70%, #327f72);
  color: #fff;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-layout .eyebrow {
  color: #ffe0d7;
}

.cta-layout h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.contact {
  background: var(--paper-strong);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.contact-form .help-text {
  margin: -4px 0 0;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cdd8d2;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 111, 106, 0.13);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline-offset: 2px;
}

.contact-form.is-submitted input,
.contact-form.is-submitted textarea,
.contact-form.is-submitted select,
.contact-form.is-submitted button {
  opacity: 0.72;
}

.form-button {
  width: fit-content;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 750;
}

.site-footer {
  padding: 34px 0;
  background:
    linear-gradient(180deg, #14201f 0%, #091312 100%);
  color: #fff;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-nav a {
  padding: 7px 0;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}



.vacancy-detail-page .hero-media {
  background-image: var(--vacancy-hero-image);
}

.vacancy-medewerker-buitendienst {
  --vacancy-hero-image: url("assets/vacatures/hero-medewerker-buitendienst-desktop-v1.jpg");
}

.vacancy-juridisch-adviseur {
  --vacancy-hero-image: url("assets/vacatures/hero-juridisch-adviseur-desktop-v1.jpg");
}

.vacancy-backoffice-medewerker {
  --vacancy-hero-image: url("assets/vacatures/hero-backoffice-medewerker-desktop-v1.jpg");
}

.vacancy-boekhouder {
  --vacancy-hero-image: url("assets/vacatures/hero-boekhouder-desktop-v1.jpg");
}

.vacancy-huishoudelijke-hulp {
  --vacancy-hero-image: url("assets/vacatures/hero-huishoudelijke-hulp-desktop-v1.jpg");
}

.vacancy-account-manager {
  --vacancy-hero-image: url("assets/vacatures/hero-account-manager-desktop-v1.jpg");
}

.vacancy-website-programmeur {
  --vacancy-hero-image: url("assets/vacatures/hero-website-programmeur-desktop-v1.jpg");
}
.vacancy-detail-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 247, 243, 0.92));
}

.vacancy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.vacancy-summary article {
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.vacancy-summary strong,
.vacancy-summary > article > span {
  display: block;
}

.vacancy-summary strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.9rem;
}

.vacancy-summary > article > span {
  color: var(--ink-muted);
  line-height: 1.5;
}

.vacancy-work-types.compact {
  margin: 4px 0 0;
}

.vacancy-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.64fr);
  gap: 24px;
  align-items: start;
}

.vacancy-story,
.vacancy-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.vacancy-story {
  padding: clamp(26px, 4vw, 42px);
}

.vacancy-side-card {
  position: sticky;
  top: 104px;
  padding: 28px;
  border-color: rgba(15, 111, 106, 0.24);
  background: linear-gradient(180deg, #eef7f5 0%, #ffffff 100%);
}

.vacancy-story h2,
.vacancy-side-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.vacancy-story > p,
.vacancy-side-card p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.vacancy-story > p + p {
  margin-top: 16px;
}

.vacancy-section-block {
  margin-top: 32px;
}

.vacancy-section-block h3 {
  margin-bottom: 14px;
}

.vacancy-side-card .button {
  width: fit-content;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 78px 20px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 10px;
  }

  .nav-cta {
    margin-top: 8px;
    width: 100%;
  }

  .hero {
    min-height: clamp(520px, 82svh, 720px);
  }

  .hero-media {
    background-position: 63% center;
  }
.hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 34, 33, 0.88), rgba(5, 34, 33, 0.54)),
      linear-gradient(0deg, rgba(20, 32, 31, 0.14), rgba(20, 32, 31, 0.05));
  }

  .service-grid,
  .detail-grid,
  .trust-grid,
  .article-grid,
  .route-grid,
  .proof-strip,
  .signal-grid,
  .process-layout,
  .focus-layout,
  .contact-layout,
  .service-detail,
  .split-section {
    grid-template-columns: 1fr;
  }

  .service-grid-centered .service-card,
  .service-grid-centered .service-card:nth-last-child(2),
  .service-grid-centered .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .process-layout,
  .contact-layout {
    gap: 34px;
  }

  .vacancy-side-card {
    position: static;
  }

  .section-heading.compact {
    max-width: 720px;
  }

  .cta-layout,
  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body:not(.vacancy-detail-page) .hero-media {
    background-image: image-set(
      url("assets/hero-zorgadvies-mobile.avif") type("image/avif"),
      url("assets/hero-zorgadvies-mobile.webp") type("image/webp"),
      url("assets/hero-zorgadvies-mobile.jpg") type("image/jpeg")
    );
  }

  .vacancy-medewerker-buitendienst {
    --vacancy-hero-image: url("assets/vacatures/hero-medewerker-buitendienst-mobile-v1.jpg");
  }

  .vacancy-juridisch-adviseur {
    --vacancy-hero-image: url("assets/vacatures/hero-juridisch-adviseur-mobile-v1.jpg");
  }

  .vacancy-backoffice-medewerker {
    --vacancy-hero-image: url("assets/vacatures/hero-backoffice-medewerker-mobile-v1.jpg");
  }

  .vacancy-boekhouder {
    --vacancy-hero-image: url("assets/vacatures/hero-boekhouder-mobile-v1.jpg");
  }

  .vacancy-huishoudelijke-hulp {
    --vacancy-hero-image: url("assets/vacatures/hero-huishoudelijke-hulp-mobile-v1.jpg");
  }

  .vacancy-account-manager {
    --vacancy-hero-image: url("assets/vacatures/hero-account-manager-mobile-v1.jpg");
  }

  .vacancy-website-programmeur {
    --vacancy-hero-image: url("assets/vacatures/hero-website-programmeur-mobile-v1.jpg");
  }
  :root {
    --shell: min(100vw - 28px, 1120px);
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    inset: 70px 14px auto;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 76svh;
    align-items: end;
  }

  .signal-band {
    margin-top: 0;
  }

  .signal-grid {
    border-radius: 0;
    box-shadow: none;
  }

  .page-hero {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 92px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .hero-lede {
    margin-top: 16px;
  }

  .hero-trust {
    gap: 8px;
  }

  .hero-trust span {
    font-size: 0.8rem;
    padding: 7px 10px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-card .button,
  .case-card .button,
  .route-card .button,
  .article-card .button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .button,
  .nav-cta {
    min-height: 48px;
  }

  .signal-grid article,
  .service-card,
  .detail-card,
  .trust-card,
  .article-card,
  .route-card,
  .quote-card,
  .process-list article,
  .service-detail aside,
  .contact-form {
    padding: 22px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .process-list span {
    width: 40px;
    height: 40px;
  }

  .sector-routes {
    grid-template-columns: 1fr;
  }

  .sector-route {
    min-height: auto;
    padding: 18px;
  }
}


@media (max-width: 1100px) {
  .vacancy-summary,
  .vacancy-content-grid {
    grid-template-columns: 1fr;
  }

  .vacancy-side-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .vacancy-summary article,
  .vacancy-story,
  .vacancy-side-card {
    padding: 22px;
  }

  .vacancy-side-card .button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
