/* ==========================================================================
   MOMENTUM — Main Stylesheet
   Brand: #2E7D32 green | #E8E7E7 bg | #ffffff white | Montserrat
   ========================================================================== */

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --green:        #2E7D32;
  --green-dark:   #1B5E20;
  --green-light:  #4CAF50;
  --bg:           #E8E7E7;
  --white:        #ffffff;
  --dark:         #111111;
  --body:         #333333;
  --muted:        #6b7280;
  --border:       #d1d5db;
  --font:         'Montserrat', sans-serif;
  --max-w:        1200px;
  --radius:       3px;
  --radius-lg:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.12);
  --transition:   0.25s ease;
  --header-h:     72px;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { font-family: var(--font); color: var(--body); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
address { font-style: normal; }

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section          { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--gray    { background: var(--bg); }
.section--green   { background: var(--green); color: var(--white); }

.section-header { margin-bottom: 3rem; }
.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
p  { line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.625rem;
}

.section-title { margin-bottom: 1rem; }
.section-intro { color: var(--muted); max-width: 560px; font-size: 1.0625rem; }

/* Entry content (wysiwyg) */
.entry-content h2,
.entry-content h3 { margin-top: 1.75rem; margin-bottom: 0.75rem; }
.entry-content p  { margin-bottom: 1.25rem; color: var(--muted); }
.entry-content ul, .entry-content ol { margin: 1rem 0 1.25rem 1.5rem; list-style: disc; }
.entry-content li { margin-bottom: 0.4rem; color: var(--muted); }
.entry-content strong { color: var(--dark); }
.entry-content a  { color: var(--green); border-bottom: 1px solid currentColor; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.875rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }

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

.btn--outline             { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover       { background: var(--green); color: var(--white); }

.btn--outline-white       { color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background: var(--white); color: var(--green); }

.btn--white               { background: var(--white); color: var(--green); }
.btn--white:hover         { background: var(--bg); }

/* ── Skip link ────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  z-index: 9999;
  background: var(--green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo__img { height: 40px; width: auto; }
.site-logo__text { font-size: 1.25rem; font-weight: 800; color: var(--green); letter-spacing: -0.01em; }

/* Nav */
.main-nav { flex: 1; }
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav__list li a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.main-nav__list li a:hover,
.main-nav__list li.current-menu-item > a { color: var(--green); }

/* Dropdown */
.main-nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.main-nav__list li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.main-nav__list .sub-menu li a {
  padding: 0.625rem 1rem;
  border-radius: 0;
  display: block;
}
.main-nav__list li { position: relative; }

/* Header actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}
.header-phone:hover { color: var(--green); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius);
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-top: var(--header-h);
  background: var(--bg);
  overflow: hidden;
}

.hero--has-image {
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,.45) 0%, rgba(0,0,0,.25) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-block: 5rem;
}

.hero__title {
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.08;
  font-weight: 800;
}
.hero--has-image .hero__title { color: var(--white); }

.hero__subtitle {
  max-width: 50ch;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
}
.hero--has-image .hero__subtitle { color: rgba(255,255,255,.85); }

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: var(--border);
  overflow: hidden;
}
.hero--has-image .hero__scroll-indicator { background: rgba(255,255,255,.3); }
.hero__scroll-indicator span {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--green);
  animation: scroll-line 1.8s ease infinite;
}
.hero--has-image .hero__scroll-indicator span { background: var(--white); }
@keyframes scroll-line { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }

/* ── About ────────────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__image-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.about__image { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; border-radius: var(--radius-lg); }
.about__content { display: flex; flex-direction: column; gap: 1.25rem; }
.about__text { color: var(--muted); }

/* ── Services ─────────────────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(46,125,50,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.service-card__icon .dashicons { font-size: 24px; width: 24px; height: 24px; color: var(--green); }

.service-card__title { font-size: 1.125rem; font-weight: 700; }
.service-card__desc  { color: var(--muted); font-size: 0.9375rem; flex: 1; }
.service-card__link  { font-size: 0.875rem; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 0.375rem; margin-top: auto; }
.service-card__link:hover { gap: 0.625rem; }

/* ── Stats ────────────────────────────────────────────────────────────────── */
.stats { background: var(--green); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-item__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-item__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Team ─────────────────────────────────────────────────────────────────── */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.team-card__photo { aspect-ratio: 4/5; overflow: hidden; }
.team-card__img   { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-card__img { transform: scale(1.04); }

.team-card__info  { padding: 1.25rem; }
.team-card__name  { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-card__function { font-size: 0.8125rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.team-card__bio   { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.team-card__linkedin { font-size: 0.8125rem; font-weight: 700; color: var(--green); }
.team-card__linkedin:hover { color: var(--green-dark); }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card__stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card__quote {
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-card__quote::before { content: '\201C'; }
.testimonial-card__quote::after  { content: '\201D'; }

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__author { display: flex; flex-direction: column; gap: 0.125rem; }
.testimonial-card__name   { font-style: normal; font-weight: 700; font-size: 0.9375rem; }
.testimonial-card__role   { font-size: 0.8125rem; color: var(--muted); }

/* ── CTA section ──────────────────────────────────────────────────────────── */
.cta { background: var(--green); }
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta__title    { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--white); }
.cta__subtitle { color: rgba(255,255,255,.8); margin-top: 0.5rem; max-width: 48ch; }

/* ── Latest posts ─────────────────────────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.post-card__image-wrap { aspect-ratio: 16/9; overflow: hidden; display: block; }
.post-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card__image { transform: scale(1.04); }

.post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: 0.75rem; }
.post-card__category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(46,125,50,.08);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}
.post-card__date    { font-size: 0.8125rem; color: var(--muted); }
.post-card__title   { font-size: 1.0625rem; font-weight: 700; line-height: 1.3; }
.post-card__title a:hover { color: var(--green); }
.post-card__excerpt { font-size: 0.9375rem; color: var(--muted); flex: 1; }
.post-card__link    { font-size: 0.875rem; font-weight: 700; color: var(--green); margin-top: auto; display: inline-flex; align-items: center; gap: 0.25rem; }
.post-card__link:hover { gap: 0.5rem; }

/* Pagination */
.pagination { margin-top: 3rem; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 0.5rem; align-items: center; }
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.pagination .page-numbers.dots  { border: none; }

/* ── Page hero ────────────────────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
  background: var(--bg);
}
.page-hero--post { padding-top: calc(var(--header-h) + 4rem); padding-bottom: 4rem; }
.page-hero__title { font-size: clamp(1.875rem, 4vw, 3rem); }

/* ── Single post ──────────────────────────────────────────────────────────── */
.post-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.post-category {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: rgba(46,125,50,.08);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius);
}
.post-byline { font-size: 0.875rem; color: var(--muted); margin-top: 0.75rem; display: flex; gap: 0.5rem; align-items: center; }

.post-featured-image { margin-bottom: 2rem; }
.post-featured-image__img { border-radius: var(--radius-lg); width: 100%; max-height: 520px; object-fit: cover; }

.post-layout { max-width: 760px; margin-inline: auto; }

.post-nav__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.post-nav__link { display: flex; flex-direction: column; gap: 0.25rem; }
.post-nav__link--next { text-align: right; margin-left: auto; }
.post-nav__dir   { font-size: 0.8125rem; font-weight: 700; color: var(--green); }
.post-nav__title { font-weight: 700; font-size: 0.9375rem; }
.post-nav__title:hover { color: var(--green); }

/* ── Page content ─────────────────────────────────────────────────────────── */
.page-content { max-width: 760px; }

/* ── 404 ──────────────────────────────────────────────────────────────────── */
.error-404 { display: flex; justify-content: center; align-items: center; min-height: 60vh; text-align: center; }
.error-404__inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.error-404__code { font-size: 8rem; font-weight: 800; color: var(--border); line-height: 1; }
.error-404__title { font-size: 1.75rem; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); padding-block: 4rem 2rem; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}

.footer__logo     { filter: brightness(0) invert(1); height: 36px; width: auto; margin-bottom: 0.875rem; }
.footer__logo-text { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 0.875rem; display: block; }
.footer__tagline   { font-size: 0.875rem; color: rgba(255,255,255,.5); }

.footer__social   { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer__social-link { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer__social-link:hover { color: var(--white); }

.footer__heading  { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }

.footer__menu { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__menu a   { font-size: 0.9375rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer__menu a:hover { color: var(--white); }

.footer__contact p,
.footer__contact address { font-size: 0.9375rem; margin-bottom: 0.375rem; }
.footer__contact a { color: rgba(255,255,255,.65); }
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy   { font-size: 0.8125rem; }
.footer__legal  { display: flex; gap: 1.25rem; }
.footer__legal a { font-size: 0.8125rem; color: rgba(255,255,255,.5); }
.footer__legal a:hover { color: var(--white); }

/* ── No results ───────────────────────────────────────────────────────────── */
.no-results { color: var(--muted); font-size: 1.0625rem; }

/* ── Contact page ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info__item { display: flex; flex-direction: column; gap: 0.375rem; }
.contact-info__label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); }
.contact-info__value { font-size: 1rem; font-weight: 600; color: var(--dark); display: block; }
.contact-info__value:hover { color: var(--green); }
.contact-info__social { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }

/* Simple form */
.simple-form { display: flex; flex-direction: column; gap: 1.25rem; }
.simple-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.simple-form__field label { font-size: 0.875rem; font-weight: 600; color: var(--dark); }
.simple-form__field input,
.simple-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.simple-form__field input:focus,
.simple-form__field textarea:focus { border-color: var(--green); }
.simple-form__field textarea { resize: vertical; min-height: 140px; }
/* Honeypot — off-screen rather than display:none, which some bots skip. */
.simple-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Form notice */
.form-notice {
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
}
.form-notice--error { border-left-color: #b3261e; }

/* ── Vacatures (Werken bij) ───────────────────────────────────────────────── */
.vacatures-list { display: flex; flex-direction: column; gap: 1rem; }
.vacature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.vacature-card:hover { box-shadow: var(--shadow); }
.vacature-card__info { flex: 1; }
.vacature-card__title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.vacature-card__meta  { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.vacature-card__tag   { font-size: 0.75rem; font-weight: 600; background: rgba(46,125,50,.08); color: var(--green); padding: 0.2rem 0.625rem; border-radius: var(--radius); }
.vacature-card__desc  { color: var(--muted); font-size: 0.9375rem; }
.vacature-empty { color: var(--muted); font-size: 1.0625rem; }
.vacature-empty a { color: var(--green); font-weight: 600; }

/* ── Page hero subtitle ───────────────────────────────────────────────────── */
.page-hero__subtitle { color: var(--muted); font-size: 1.0625rem; max-width: 600px; margin-top: 0.75rem; }
.page-hero--image { position: relative; padding-block: 8rem; background-size: cover; background-position: center; }
.page-hero--image h1 { position: relative; z-index: 1; }

/* ── About grid reverse ───────────────────────────────────────────────────── */
.about__grid--reverse { direction: rtl; }
.about__grid--reverse > * { direction: ltr; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .team__grid        { grid-template-columns: repeat(2, 1fr); }
  .stats__grid       { grid-template-columns: repeat(2, 1fr); }
  .about__grid       { gap: 3rem; }
}

@media (max-width: 900px) {
  .services__grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .footer__brand     { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 720px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .header-phone { display: none; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 90;
  }
  .main-nav.is-open { transform: none; }

  .main-nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .main-nav__list li { width: 100%; }
  .main-nav__list li a { padding: 0.875rem 0; font-size: 1.125rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .main-nav__list .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 1rem; }

  .site-header__actions .btn { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__image-wrap { display: none; }

  .services__grid    { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .posts-grid        { grid-template-columns: 1fr; }
  .team__grid        { grid-template-columns: repeat(2, 1fr); }
  .stats__grid       { grid-template-columns: repeat(2, 1fr); }

  .cta__inner { flex-direction: column; text-align: center; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }

  .section-header--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .team__grid    { grid-template-columns: 1fr; }
  .stats__grid   { grid-template-columns: 1fr; }
}
