/* ==========================================================================
   Section Styles — Van der Veen VP
   Elke sectie geprefixed met eigen class om botsingen te voorkomen.
   ========================================================================== */

/* ---------- NAV ---------- */
.s-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--line) 60%, transparent);
}
.s-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.3s var(--ease-out-quart, ease);
}
.s-nav.is-scrolled .nav-inner {
  padding: 10px 0;
}
.s-nav .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
  border-bottom: none;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  width: 42px;
  height: auto;
  flex: none;
}
.brand-logo-full {
  height: 72px;
  width: auto;
  flex: none;
  transition: height 0.3s var(--ease-out-quart, ease);
}
.s-nav.is-scrolled .brand-logo-full {
  height: 48px;
}
.s-nav .brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--ink);
  position: relative;
  flex: none;
  overflow: hidden;
}
.s-nav .brand-mark::before {
  content: "";
  position: absolute;
  left: 8px; right: 8px; top: 50%;
  height: 1.5px;
  background: var(--moss);
  transform: translateY(-50%);
}
.s-nav .brand-mark::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bg-card);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 2px var(--ink);
}
.s-nav .brand-name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.s-nav .brand-sub {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}
.s-nav .nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
/* wp_nav_menu generates ul>li>a — flatten it */
.s-nav .nav-links > ul,
.s-nav .nav-links > .menu {
  display: contents;
}
.s-nav .nav-links li {
  list-style: none;
  display: contents;
}
.s-nav .nav-links a {
  border: none;
  border-bottom: none;
  text-decoration: none;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 400;
}
.s-nav .nav-links a:hover { color: var(--sky-deep); }
.s-nav .nav-cta {
  background: var(--moss);
  color: var(--bg-card) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border: none !important;
  transition: background .2s ease, box-shadow .3s var(--ease-out-quart, ease);
}
.s-nav .nav-cta:hover {
  background: var(--moss-deep);
  transform: none;
}

/* Mobile nav handled by hamburger menu in the mobile section below */

/* ---------- HERO ---------- */
.s-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--bg);
}
.s-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, color-mix(in oklab, var(--line) 50%, transparent) 1px, transparent 1px);
  background-size: 96px 100%;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
  z-index: 0;
}
.s-hero .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 0.85fr;
  gap: 72px;
  align-items: center;
  min-height: 560px;
}
@media (max-width: 980px) {
  .s-hero { padding: 64px 0 90px; }
  .s-hero .hero-grid { grid-template-columns: 1fr; gap: 48px; min-height: 0; }
}
.s-hero h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.08;
  margin: 0 0 28px;
  font-weight: 500;
  letter-spacing: -0.028em;
}
.s-hero h1 em {
  font-style: normal;
  color: var(--moss-deep);
  font-weight: 500;
  position: relative;
}
.s-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 6px;
  background: var(--moss-soft);
  z-index: -1;
  border-radius: 2px;
}
.s-hero .hero-lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 40px;
}
.s-hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.s-hero .placeholder-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  background: rgba(255,255,255,.92);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* Hero visual stack */
.s-hero .hero-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  max-height: 560px;
}
.s-hero .hero-image {
  flex: 1;
  min-height: 320px;
  border-radius: var(--radius-card);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #F4EFE8 0%, #DDD3C4 50%, #B5A892 100%);
}
.s-hero .hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 25%, rgba(255, 250, 235, .7), transparent 55%);
}
.s-hero .hero-info-card {
  flex: none;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}
.s-hero .hero-info-card .ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--moss-soft);
  color: var(--moss-deep);
  display: grid; place-items: center;
  flex: none;
}
.s-hero .hero-info-card .ico svg { width: 18px; height: 18px; }
.s-hero .hero-info-card .label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500; margin-bottom: 2px;
}
.s-hero .hero-info-card .num {
  font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink); line-height: 1.25;
}
.s-hero .hero-info-card .sub {
  font-size: 13px; color: var(--ink-muted); margin-top: 1px;
}

/* ---------- USPs ---------- */
.s-usps {
  background: var(--bg-card);
  padding: 36px 0 56px;
  border-bottom: 1px solid var(--line);
}
.s-usps .usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}
@media (max-width: 880px) {
  .s-usps .usps-grid { grid-template-columns: 1fr; gap: 0; }
}
.s-usps .usp {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  padding: 4px 28px;
  border-left: 1px solid var(--line);
}
.s-usps .usp:first-child { border-left: none; padding-left: 0; }
@media (max-width: 880px) {
  .s-usps .usp { border-left: none; border-top: 1px solid var(--line); padding: 18px 0; }
  .s-usps .usp:first-child { border-top: none; padding-top: 4px; }
}
.s-usps .usp-ico {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--moss-soft);
  color: var(--moss-deep);
  display: grid; place-items: center;
  flex: none;
}
.s-usps .usp-ico svg { width: 16px; height: 16px; }
.s-usps .usp h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  margin: 4px 0 4px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.s-usps .usp p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- ABOUT ---------- */
.s-about {
  background: var(--bg-soft);
}
.s-about .about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .s-about .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.s-about .portrait-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky-soft) 0%, var(--bg-soft) 100%);
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}
.s-about .portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, color-mix(in oklab, var(--sky) 18%, transparent) 1px, transparent 1px);
  background-size: 32px 100%;
  z-index: 1;
  pointer-events: none;
}
.s-about .portrait-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 30%;
  height: 1.5px;
  background: var(--moss);
  opacity: .6;
  z-index: 1;
}
.s-about .portrait-img {
  --pe-blur: 0.3px;
  --pe-contrast: 1.06;
  --pe-saturate: 1.1;
  --pe-brightness: 1.02;

  position: absolute;
  bottom: 0;
  left: inherit;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  image-rendering: -webkit-optimize-contrast;
  filter:
    blur(var(--pe-blur))
    contrast(var(--pe-contrast))
    saturate(var(--pe-saturate))
    brightness(var(--pe-brightness));
}
.s-about .portrait-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: var(--ink);
  color: var(--bg-card);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  z-index: 3;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}
.s-about .portrait-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--moss) 30%, transparent);
}
.s-about .about-text h2 {
  font-size: clamp(32px, 3.6vw, 42px);
  line-height: 1.18;
  margin: 16px 0 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.s-about .about-text h2 em { font-style: normal; color: var(--moss-deep); font-weight: 500; }
.s-about .about-text p {
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-size: 16.5px;
}
.s-about .about-quote {
  margin: 32px 0 0;
  padding: 24px 0 0 24px;
  border-left: 2px solid var(--moss);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.s-about .about-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px 36px;
  margin-top: 30px;
}
.s-about .about-meta div { display: flex; flex-direction: column; gap: 4px; }
.s-about .about-meta .lbl {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
}
.s-about .about-meta .val {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.015em;
}
@media (max-width: 720px) {
  .s-about .about-meta { grid-template-columns: 1fr 1fr; }
}

/* ---------- WANNEER ---------- */
.s-when .when-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) {
  .s-when .when-grid { grid-template-columns: 1fr; }
}
.s-when .when-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  isolation: isolate;
  border-radius: var(--radius-card);
  padding: 26px 24px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.s-when .when-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--sky-soft) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}
.s-when .when-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.s-when .when-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--sky-deep);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.s-when .when-icon svg { width: 20px; height: 20px; }

/* Card color variants */
.s-when .when-card:nth-child(2) .when-icon { color: var(--moss-deep); }
.s-when .when-card:nth-child(2)::after {
  background: linear-gradient(180deg, var(--moss-soft) 0%, transparent 65%);
}
.s-when .when-card:nth-child(3) .when-icon { color: #B85A2D; }
.s-when .when-card:nth-child(3)::after {
  background: linear-gradient(180deg, #FFE9DD 0%, transparent 65%);
}

.s-when .when-card h3 {
  font-size: 19px;
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.s-when .when-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
}
.s-when .when-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.s-when .when-list li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.s-when .when-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--sky);
}

/* ---------- WERKWIJZE (process steps) ---------- */
.s-process { background: var(--bg-soft); }
.s-process .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  counter-reset: step;
}
@media (max-width: 880px) {
  .s-process .process-steps { grid-template-columns: 1fr; gap: 16px; }
}
.s-process .step {
  counter-increment: step;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.s-process .step-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-process .step-num {
  font-family: var(--font-sans);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: var(--moss-deep);
  letter-spacing: -0.03em;
}
.s-process .step-num::before {
  content: counter(step, decimal-leading-zero);
}
.s-process .step-num-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.s-process .step h3 {
  font-size: 19px;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.018em;
  font-weight: 600;
}
.s-process .step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
/* Arrow between steps */
.s-process .step::after {
  content: "\2192";
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--moss-deep);
  font-weight: 400;
  z-index: 2;
  background: var(--bg-soft);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  line-height: 1;
}
.s-process .step:last-child::after { display: none; }
@media (max-width: 880px) {
  .s-process .step::after {
    content: "\2193";
    right: auto; left: 50%;
    top: auto; bottom: -14px;
    transform: translateX(-50%);
  }
}

/* ---------- REVIEWS ---------- */
.s-reviews { background: var(--bg-card); }
.s-reviews .reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Featured: editorial, gradient field */
.s-reviews .review-feature {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 60px 64px;
  background:
    radial-gradient(120% 90% at 50% 0%,
      color-mix(in oklab, var(--moss-soft) 70%, white) 0%,
      color-mix(in oklab, var(--moss-soft) 35%, white) 45%,
      transparent 85%);
  border: none;
  border-radius: 0;
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.s-reviews .review-feature .review-mark {
  display: block;
  position: absolute;
  left: 28px; top: -70px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 380px;
  line-height: 1;
  color: var(--moss);
  opacity: 0.26;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
}
.s-reviews .review-feature .review-quote,
.s-reviews .review-feature .review-author { position: relative; z-index: 1; }
.s-reviews .review-feature .review-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  text-wrap: balance;
}
.s-reviews .review-feature .review-author {
  display: block;
  position: relative;
  padding-top: 22px;
}
.s-reviews .review-feature .review-author::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 1px;
  background: var(--moss);
  opacity: 0.45;
}
.s-reviews .review-feature .review-name { display: none; }
.s-reviews .review-feature .review-role {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-deep);
  font-weight: 600;
}

/* Secondary: hairline-separated strip */
.s-reviews .reviews-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 0;
}
.s-reviews .review {
  display: flex;
  flex-direction: column;
  padding: 8px 28px;
  background: transparent;
  border: none;
  border-left: 1px solid color-mix(in oklab, var(--line) 70%, transparent);
  border-radius: 0;
}
.s-reviews .reviews-stack .review:first-child { border-left: none; padding-left: 0; }
.s-reviews .reviews-stack .review:last-child  { padding-right: 0; }
/* Role as eyebrow above quote */
.s-reviews .reviews-stack .review-author {
  order: -1;
  margin-bottom: 14px;
  line-height: 1;
}
.s-reviews .reviews-stack .review-name { display: none; }
.s-reviews .reviews-stack .review-role {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.s-reviews .review-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-weight: 400;
  text-wrap: pretty;
}
.s-reviews .review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.s-reviews .review-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.s-reviews .review-role {
  font-size: 13px;
  color: var(--ink-muted);
}

@media (max-width: 880px) {
  .s-reviews .review-feature { padding: 80px 24px 48px; }
  .s-reviews .review-feature .review-mark { font-size: 240px; top: -40px; left: 10px; }
  .s-reviews .reviews-stack {
    grid-template-columns: 1fr;
  }
  .s-reviews .reviews-stack .review {
    border-left: none;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  .s-reviews .reviews-stack .review:first-child { padding-left: 0; }
  .s-reviews .reviews-stack .review:last-child { border-bottom: none; }
}

/* ---------- VOOR WERKGEVERS (employer / office-hour) ---------- */
.s-employer {
  background: var(--moss-deep);
  color: var(--bg-card);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.s-employer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, color-mix(in oklab, var(--bg-card) 6%, transparent) 1px, transparent 1px);
  background-size: 96px 100%;
  opacity: .8;
}
.s-employer::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: var(--moss);
  opacity: .6;
}
.s-employer .office-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .s-employer .office-grid { grid-template-columns: 1fr; gap: 36px; }
}
.s-employer h2 {
  font-size: clamp(32px, 3.6vw, 42px);
  color: var(--bg-card);
  margin: 14px 0 18px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.s-employer h2 em { font-style: normal; color: var(--moss-soft); font-weight: 500; }
.s-employer p {
  color: color-mix(in oklab, var(--bg-card) 80%, transparent);
  font-size: 16.5px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.s-employer .section-eyebrow { color: var(--moss-soft); }
.s-employer .btn-primary {
  background: var(--bg-card);
  color: var(--moss-deep);
}
.s-employer .btn-primary:hover {
  background: var(--bg-card);
  color: var(--moss-deep);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.35);
}
.s-employer .office-card {
  background: color-mix(in oklab, var(--bg-card) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg-card) 18%, transparent);
  border-radius: 14px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}
.s-employer .office-card h4 {
  font-family: var(--font-sans);
  font-size: 22px;
  color: var(--bg-card);
  margin: 0 0 8px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.s-employer .office-card .moment {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 24px 0 8px;
}
.s-employer .office-card .moment .day {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--moss-soft);
  letter-spacing: -0.01em;
}
.s-employer .office-card .moment .time {
  font-size: 15px;
  color: color-mix(in oklab, var(--bg-card) 75%, transparent);
}
.s-employer .office-card hr {
  border: none;
  border-top: 1px solid color-mix(in oklab, var(--bg-card) 14%, transparent);
  margin: 18px 0;
}
.s-employer .office-card .small {
  font-size: 13px;
  color: color-mix(in oklab, var(--bg-card) 60%, transparent);
  margin: 0;
}
.s-employer .employer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.s-employer .employer-tags span {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg-card) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg-card) 20%, transparent);
  color: color-mix(in oklab, var(--bg-card) 88%, transparent);
  line-height: 1.3;
}
.s-employer .employer-tags span:last-child {
  background: transparent;
  color: var(--moss-soft);
  border-color: transparent;
  padding-left: 4px;
}

/* ---------- CONTACT ---------- */
.s-contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}
.s-contact .contact-form-wrap {
  padding: 56px 48px;
}
@media (max-width: 760px) {
  .s-contact .contact-form-wrap { padding: 40px 28px; }
}
.s-contact .contact-form-wrap h3 {
  font-size: 26px;
  margin: 0 0 12px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.s-contact .contact-form-wrap > p {
  color: var(--ink-soft);
  margin: 0 0 32px;
  font-size: 15.5px;
}
.s-contact .form-submit {
  width: 100%;
  justify-content: center;
}
.s-contact .form-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  text-align: center;
}
.s-contact .form-note a,
.s-contact .form-note a:visited,
.s-contact .form-note a:hover,
.s-contact .form-note a:active {
  text-decoration: none !important;
  border-bottom: 1px solid color-mix(in oklab, var(--sky-deep) 30%, transparent);
}

/* ---------- FOOTER ---------- */
.s-footer {
  background: var(--ink);
  color: color-mix(in oklab, var(--bg-card) 82%, transparent);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.s-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--moss);
  pointer-events: none;
}
.s-footer .container { position: relative; z-index: 1; }
.s-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 760px) {
  .s-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
.s-footer h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg-card) 60%, transparent);
  margin: 0 0 18px;
  font-weight: 500;
}
.s-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-footer ul a {
  color: color-mix(in oklab, var(--bg-card) 80%, transparent);
  border: none;
  font-size: 15px;
}
.s-footer ul a:hover { color: var(--moss-soft); }
.s-footer .brand-block p {
  color: color-mix(in oklab, var(--bg-card) 60%, transparent);
  font-size: 14.5px;
  margin: 14px 0 0;
  line-height: 1.65;
  max-width: 32ch;
}
.s-footer .brand-block .brand-mark {
  background: var(--bg-card);
}
.s-footer .brand-block .brand-mark::before { background: var(--moss); }
.s-footer .brand-block .brand-mark::after {
  background: var(--ink);
  box-shadow: 0 0 0 2px var(--bg-card);
}
.s-footer .brand-block .brand-name { color: var(--bg-card); }
.s-footer .brand-block .brand-sub { color: color-mix(in oklab, var(--bg-card) 50%, transparent); }
.s-footer .footer-bottom {
  border-top: 1px solid color-mix(in oklab, var(--bg-card) 12%, transparent);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: color-mix(in oklab, var(--bg-card) 50%, transparent);
}
.s-footer .footer-bottom a { border: none; border-bottom: none; text-decoration: none; color: inherit; }
.s-footer .footer-bottom a:hover { color: var(--moss-soft); }
.s-footer .footer-bottom li { list-style: none; display: inline; }
.s-footer ul a { border-bottom: none; text-decoration: none; }

/* ---------- FORM OVERRIDES (WPForms + Fluent Forms) ---------- */
.s-contact .fluentform .ff-el-input--label label,
.s-contact .wpforms-container .wpforms-field-label {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  font-weight: 500;
}
.s-contact .fluentform input[type="text"],
.s-contact .fluentform input[type="email"],
.s-contact .fluentform input[type="tel"],
.s-contact .fluentform textarea,
.s-contact .fluentform select,
.s-contact .wpforms-container input[type="text"],
.s-contact .wpforms-container input[type="email"],
.s-contact .wpforms-container input[type="tel"],
.s-contact .wpforms-container textarea,
.s-contact .wpforms-container select {
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm) !important;
  padding: 14px 16px !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
.s-contact .fluentform input:focus,
.s-contact .fluentform textarea:focus,
.s-contact .fluentform select:focus,
.s-contact .wpforms-container input:focus,
.s-contact .wpforms-container textarea:focus,
.s-contact .wpforms-container select:focus {
  border-color: var(--moss) !important;
  box-shadow: 0 0 0 3px var(--moss-soft) !important;
  outline: none !important;
}
.s-contact .fluentform .ff-btn-submit,
.s-contact .wpforms-container .wpforms-submit {
  background: var(--moss) !important;
  color: var(--bg-card) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 16px 28px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  font-family: var(--font-sans) !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background .2s ease !important;
}
.s-contact .fluentform .ff-btn-submit:hover,
.s-contact .wpforms-container .wpforms-submit:hover {
  background: var(--moss-deep) !important;
}

/* Checkbox styling */
.s-contact .fluentform .ff-el-form-check-label,
.s-contact .wpforms-container .wpforms-field-checkbox ul li label {
  display: flex !important;
  gap: 12px !important;
  align-items: flex-start !important;
  font-size: 14px !important;
  color: var(--ink-soft) !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  cursor: pointer !important;
  margin: 8px 0 24px !important;
}
.s-contact .fluentform .ff-el-form-check-input,
.s-contact .wpforms-container .wpforms-field-checkbox input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  margin-top: 2px !important;
  accent-color: var(--moss) !important;
  cursor: pointer !important;
  flex: none !important;
}

/* WPForms specific resets */
.s-contact .wpforms-container .wpforms-field { padding: 0 0 12px !important; }
.s-contact .wpforms-container .wpforms-field-label { margin-bottom: 6px !important; }
.s-contact .wpforms-container .wpforms-field-sublabel { display: none; }
.s-contact .wpforms-container .wpforms-field select {
  text-overflow: ellipsis;
  height: auto !important;
  line-height: 1.4 !important;
}
.s-contact .wpforms-container .wpforms-submit-container { padding: 0 !important; }
.s-contact .wpforms-container .wpforms-submit {
  width: auto !important;
  padding: 16px 40px !important;
}
.s-contact .wpforms-container .wpforms-field-checkbox ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.s-contact .wpforms-container .wpforms-field-checkbox ul li label {
  gap: 10px !important;
  align-items: flex-start !important;
}
.s-contact .wpforms-container .wpforms-field-checkbox ul li input[type="checkbox"] {
  margin: 0 !important;
  margin-top: 3px !important;
}

/* ==========================================================================
   Mobile Responsive — 480px and below
   ========================================================================== */

@media (max-width: 960px) {
  .s-nav .nav-inner { padding: 12px 0; }
  .s-nav .brand-logo-full { height: 48px; }
  .s-nav.is-scrolled .brand-logo-full { height: 40px; }
  .s-nav.is-scrolled .nav-inner { padding: 8px 0; }
}

@media (max-width: 480px) {
  /* NAV */
  .s-nav { padding: 0 4px; }
  .s-nav .brand-logo-full { height: 40px; }
  .s-nav.is-scrolled .brand-logo-full { height: 34px; }

  /* HERO */
  .s-hero { padding: 48px 0 60px; }
  .s-hero h1 { font-size: clamp(28px, 8vw, 40px); margin-bottom: 20px; }
  .s-hero .hero-lead { font-size: 16px; margin-bottom: 28px; }
  .s-hero .hero-actions { flex-direction: column; }
  .s-hero .hero-actions .btn { width: 100%; justify-content: center; }
  .s-hero .hero-info-card { padding: 16px; gap: 12px; }

  /* USPs */
  .s-usps { padding: 24px 0 36px; }

  /* ABOUT */
  .s-about .about-meta { grid-template-columns: 1fr; gap: 16px; }

  /* WHEN */
  .s-when .when-card { padding: 20px 18px 22px; }

  /* PROCESS */
  .s-process .step { padding: 20px 18px; }
  .s-process .step-num { font-size: 22px; }

  /* REVIEWS */
  .s-reviews .review-feature { padding: 0; }
  .s-reviews .review-feature .review-quote { font-size: clamp(20px, 5vw, 26px); }
  .s-reviews .review-mark { font-size: 100px; top: -16px; }
  .s-reviews .review { padding: 24px 20px 20px; }

  /* EMPLOYER */
  .s-employer { padding: 50px 0; }
  .s-employer .office-card { padding: 24px 20px; }

  /* CONTACT */
  .s-contact .contact-form-wrap { padding: 28px 18px; }
  .s-contact .contact-form-wrap h3 { font-size: clamp(20px, 5vw, 26px); }

  /* FOOTER */
  .s-footer { padding: 48px 0 28px; }
  .s-footer .footer-grid { gap: 28px 18px; margin-bottom: 32px; }
  .s-footer ul li { padding: 4px 0; }
}

/* ==========================================================================
   Mobile Nav — hamburger menu
   ========================================================================== */

.s-nav .nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
}
.s-nav .nav-toggle svg { width: 20px; height: 20px; display: block; }

@media (max-width: 960px) {
  .s-nav .nav-toggle { display: block; }
  .s-nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    z-index: 50;
  }
  .s-nav .nav-links.is-open { display: flex; }
  .s-nav .nav-links a { padding: 8px 0; font-size: 16px; }
  .s-nav .nav-cta { text-align: center; margin-top: 8px; }
}
