:root {
  --cream: #f5f3ea;
  --cream-100: #efece0;
  --white: #ffffff;
  --olive: #4a5d3a;
  --olive-dark: #33422a;
  --sage: #8a9b6e;
  --sage-soft: #e3e7d6;
  --ink: #2b2f26;
  --muted: #5f6656;
  --line: #dcdccf;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(43, 47, 38, 0.06), 0 12px 30px rgba(43, 47, 38, 0.08);
  --maxw: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background-color: var(--cream);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

h1,
h2,
h3,
.brand-name {
  font-family: 'Bitter', Georgia, serif;
  color: var(--olive-dark);
  line-height: 1.15;
  margin: 0;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  text-wrap: pretty;
}

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

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--olive);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
  color: var(--white);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: var(--olive);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--olive-dark);
  color: var(--white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--olive-dark);
  border-color: var(--olive);
}

.btn-ghost:hover {
  background-color: var(--sage-soft);
  color: var(--olive-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(245, 243, 234, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}

.nav-link:hover {
  background-color: var(--cream-100);
  color: var(--olive-dark);
}

.nav-link.is-active {
  color: var(--olive-dark);
  background-color: var(--sage-soft);
}

.nav-cta {
  background-color: var(--olive);
  color: var(--white);
}

.nav-cta:hover {
  background-color: var(--olive-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: var(--olive-dark);
  border-radius: 2px;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-intro {
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sage);
  margin: 0 0 0.6rem;
}

.center {
  text-align: center;
  margin-top: 2.5rem;
}

.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--muted);
  max-width: 46ch;
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-copy .lead {
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Values */
.values {
  background-color: var(--white);
  border-block: 1px solid var(--line);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.value-card {
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* Split */
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.split.reverse .split-media {
  order: 2;
}

.split-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split-copy p {
  color: var(--muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--sage-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5d3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
}

/* Service preview cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.link-arrow {
  color: var(--olive);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

/* Anchor nav */
.anchor-nav {
  position: sticky;
  top: 72px;
  z-index: 40;
  background-color: var(--white);
  border-block: 1px solid var(--line);
}

.anchor-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-block: 0.6rem;
  overflow-x: auto;
}

.anchor-nav a {
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--muted);
}

.anchor-nav a:hover {
  background-color: var(--sage-soft);
  color: var(--olive-dark);
}

/* Service detail */
.service-detail {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-detail.alt {
  background-color: var(--white);
}

.service-detail-inner {
  max-width: 760px;
}

.service-detail-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* Page hero */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--sage-soft), var(--cream));
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 60ch;
}

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mission-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--olive);
  border-radius: var(--radius);
  padding: 2rem;
}

.mission-card p {
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* Quote */
.quote-section {
  background-color: var(--olive);
}

.quote {
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.quote blockquote {
  margin: 0;
  font-family: 'Bitter', Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--white);
}

.quote figcaption {
  margin-top: 1.25rem;
  color: var(--sage-soft);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* CTA */
.cta-section {
  background-color: var(--white);
  border-top: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--sage-soft), var(--cream-100));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.cta-copy {
  max-width: 46ch;
}

.cta-copy h2 {
  margin-bottom: 0.4rem;
}

.cta-copy p {
  color: var(--muted);
  margin: 0;
}

/* Steps */
.step-list {
  list-style: none;
  counter-reset: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.step-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-number {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: var(--olive);
  color: var(--white);
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-card h3 {
  margin-bottom: 0.35rem;
}

.step-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* Vacatures */
.vacature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.vacature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.vacature-type {
  color: var(--sage);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0.15rem 0 0.5rem;
}

.vacature-card p {
  color: var(--muted);
  margin: 0;
}

/* Forms */
.form-section {
  background-color: var(--white);
  border-block: 1px solid var(--line);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-intro p {
  color: var(--muted);
}

.card-form {
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-soft);
}

.card-form .btn {
  width: 100%;
  margin-top: 0.4rem;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.alert-success {
  background-color: var(--sage-soft);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
}

.alert-success h2 {
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}

.alert-success p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq-container {
  max-width: 780px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.4rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: 'Bitter', serif;
  color: var(--olive-dark);
  padding: 0.9rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--sage);
  font-family: 'Inter', sans-serif;
}

.faq-item[open] summary::after {
  content: '\2013';
}

.faq-item p {
  color: var(--muted);
  margin: 0 0 1rem;
}

/* Footer */
.site-footer {
  background-color: var(--olive-dark);
  color: var(--cream);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.footer-name {
  font-family: 'Bitter', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.footer-tagline {
  color: var(--sage-soft);
  margin: 0;
  max-width: 34ch;
}

.footer-title {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin: 0 0 0.9rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--cream);
  font-size: 0.96rem;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(245, 243, 234, 0.16);
  font-size: 0.88rem;
  color: var(--sage-soft);
}

.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .value-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background-color: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }

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

  .nav-link,
  .nav-cta {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-align: center;
  }

  .hero-inner,
  .split-inner,
  .mission-grid,
  .form-layout,
  .step-list,
  .vacature-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .hero-media {
    order: -1;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .value-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
