/* Houts HR — Design System (brandguide) */

:root {
  /* Merkkleuren */
  --brand-navy: #0E0929;
  --brand-blue: #8FA0D5;
  --brand-cream: #FFEFDD;
  --brand-orange: #FE8504;
  --brand-lavender: #E9EEFF;
  --brand-orange-hover: #e57704;

  /* Semantische tokens (bestaande namen voor compatibiliteit) */
  --bordeaux: var(--brand-navy);
  --wijnrood: var(--brand-navy);
  --beige: var(--brand-blue);
  --warm-zand: var(--brand-lavender);
  --creme: var(--brand-cream);
  --taupe: rgba(14, 9, 41, 0.62);
  --antraciet: var(--brand-navy);
  --oudroze: var(--brand-orange);
  --accent: var(--brand-orange);
  --wit: #ffffff;
  --max-width: 1120px;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(14, 9, 41, 0.08);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--antraciet);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--wijnrood);
}

h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p + p { margin-top: 1rem; }

a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover { color: var(--wijnrood); }

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--wit);
  border-bottom: 1px solid var(--warm-zand);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo,
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.logo:hover,
.footer-logo:hover {
  color: inherit;
}

.logo-mark {
  height: 56px;
  width: auto;
  max-width: none;
  aspect-ratio: 1;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.logo-title {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.06em;
  color: var(--brand-navy);
}

.logo-tagline {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.5rem, 1.2vw, 0.625rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-navy);
  opacity: 0.85;
}

.logo-wordmark--light .logo-title,
.logo-wordmark--light .logo-tagline {
  color: var(--brand-cream);
  opacity: 1;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--antraciet);
  margin: 5px 0;
  transition: var(--transition);
}

.main-nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  list-style: none;
  gap: 0.125rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.65rem;
  text-decoration: none;
  color: var(--antraciet);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--warm-zand);
  color: var(--wijnrood);
}

.main-nav a.nav-cta {
  background: var(--brand-orange);
  color: var(--wit);
}

.main-nav a.nav-cta:hover,
.main-nav a.nav-cta.active {
  background: var(--brand-orange-hover);
  color: var(--wit);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--brand-orange);
  color: var(--wit);
}

.btn-primary:hover {
  background: var(--brand-orange-hover);
  color: var(--wit);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(254, 133, 4, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--bordeaux);
  border: 2px solid var(--bordeaux);
}

.btn-secondary:hover {
  background: var(--bordeaux);
  color: var(--wit);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero */
.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: linear-gradient(160deg, var(--creme) 0%, var(--warm-zand) 100%);
}

.hero-banner {
  padding: 0;
  background: var(--creme);
}

.hero-overlay {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(440px, 72vh, 640px);
  padding: 0;
  overflow: hidden;
  background: var(--brand-navy);
}

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

.hero-overlay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-overlay-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 9, 41, 0.55) 0%,
    rgba(14, 9, 41, 0.35) 42%,
    rgba(14, 9, 41, 0.12) 68%,
    rgba(14, 9, 41, 0.02) 100%
  );
}

.hero-overlay-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  min-height: clamp(440px, 72vh, 640px);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  padding-left: clamp(1.5rem, 6vw, 4.5rem);
  box-sizing: border-box;
}

.hero-overlay-panel {
  max-width: 44rem;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 3.5vw, 2rem);
  background: var(--brand-cream);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 16px 48px rgba(14, 9, 41, 0.18);
  color: var(--brand-navy);
  text-align: center;
}

.hero-overlay-panel__mark {
  display: block;
  width: 3rem;
  height: 3rem;
  max-width: none;
  aspect-ratio: 1;
  object-fit: contain;
  margin-inline: auto;
  margin-bottom: 0.875rem;
}

.hero-overlay-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.hero-overlay-title {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brand-navy);
  margin-bottom: 0.65rem;
}

.hero-overlay-text {
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(14, 9, 41, 0.82);
  margin-bottom: 1.25rem;
}

.btn-hero {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  background: var(--brand-orange);
  color: var(--wit);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-hero:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(254, 133, 4, 0.4);
}

/* Brand decor — loose L / step elements (intro section test) */
.brand-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.brand-decor__img {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  translate: var(--parallax-x, 0) var(--parallax-y, 0);
  rotate: var(--parallax-rotate, 0deg);
}

@media (prefers-reduced-motion: reduce) {
  .brand-decor__img {
    translate: none;
    rotate: none;
  }
}

.section-intro {
  position: relative;
  overflow: hidden;
}

.section-intro .container {
  position: relative;
  z-index: 1;
}

.brand-decor--light .brand-decor__shape--light-1 {
  top: 4%;
  right: 2%;
  width: clamp(4rem, 10vw, 7rem);
  opacity: 0.18;
  transform: rotate(12deg);
}

.brand-decor--light .brand-decor__shape--light-2 {
  top: 22%;
  left: -1.5rem;
  width: clamp(3.5rem, 8vw, 6rem);
  opacity: 0.22;
  transform: rotate(-18deg) scaleX(-1);
}

.brand-decor--light .brand-decor__shape--light-3 {
  top: 48%;
  right: 6%;
  width: clamp(3.25rem, 7vw, 5.75rem);
  opacity: 0.32;
  transform: rotate(200deg);
}

.brand-decor--light .brand-decor__shape--light-4 {
  bottom: 18%;
  left: 8%;
  width: clamp(3.5rem, 7.5vw, 6rem);
  opacity: 0.16;
  transform: rotate(75deg);
}

.brand-decor--light .brand-decor__shape--light-5 {
  bottom: 6%;
  right: -1rem;
  width: clamp(3.5rem, 8vw, 6.25rem);
  opacity: 0.17;
  transform: rotate(-30deg);
}

.brand-decor--light .brand-decor__shape--light-6 {
  top: 62%;
  left: 38%;
  width: clamp(2.75rem, 6vw, 5rem);
  opacity: 0.12;
  transform: rotate(140deg) scaleX(-1);
}

.brand-decor--light .brand-decor__shape--light-7 {
  top: 14%;
  left: 44%;
  width: clamp(2.5rem, 5.5vw, 4.5rem);
  opacity: 0.14;
  transform: rotate(-45deg);
}

.brand-decor--light .brand-decor__shape--light-8 {
  top: 36%;
  right: 22%;
  width: clamp(3rem, 6.5vw, 5.25rem);
  opacity: 0.15;
  transform: rotate(105deg);
}

.brand-decor--light .brand-decor__shape--light-9 {
  bottom: 32%;
  left: 2%;
  width: clamp(2.75rem, 6vw, 5rem);
  opacity: 0.13;
  transform: rotate(250deg) scaleX(-1);
}

.brand-decor--light .brand-decor__shape--light-10 {
  top: 6%;
  left: 16%;
  width: clamp(2.5rem, 5.5vw, 4.25rem);
  opacity: 0.14;
  transform: rotate(55deg) scaleX(-1);
}

.brand-decor--light .brand-decor__shape--light-11 {
  top: 54%;
  left: 20%;
  width: clamp(2.5rem, 5vw, 4.5rem);
  opacity: 0.11;
  transform: rotate(320deg);
}

.brand-decor--light .brand-decor__shape--light-12 {
  bottom: 10%;
  left: 46%;
  width: clamp(2.75rem, 6vw, 5rem);
  opacity: 0.13;
  transform: rotate(-60deg);
}

.brand-decor--light .brand-decor__shape--light-13 {
  top: 70%;
  right: 14%;
  width: clamp(2.5rem, 5.5vw, 4.75rem);
  opacity: 0.12;
  transform: rotate(15deg) scaleX(-1);
}

@media (max-width: 639px) {
  .brand-decor--light .brand-decor__shape--light-1 {
    right: -1rem;
    width: clamp(3.5rem, 16vw, 5rem);
    opacity: 0.16;
  }

  .brand-decor--light .brand-decor__shape--light-2 {
    top: 8%;
    width: clamp(3.25rem, 14vw, 4.5rem);
    opacity: 0.2;
  }

  .brand-decor--light .brand-decor__shape--light-3 {
    top: auto;
    bottom: 14%;
    right: -0.75rem;
    opacity: 0.28;
  }

  .brand-decor--light .brand-decor__shape--light-4,
  .brand-decor--light .brand-decor__shape--light-5,
  .brand-decor--light .brand-decor__shape--light-6,
  .brand-decor--light .brand-decor__shape--light-7,
  .brand-decor--light .brand-decor__shape--light-9,
  .brand-decor--light .brand-decor__shape--light-11,
  .brand-decor--light .brand-decor__shape--light-12,
  .brand-decor--light .brand-decor__shape--light-13 {
    display: none;
  }

  .brand-decor--light .brand-decor__shape--light-8 {
    top: auto;
    bottom: 4%;
    left: 6%;
    width: clamp(2.75rem, 13vw, 4rem);
    opacity: 0.14;
    transform: rotate(95deg);
  }

  .brand-decor--light .brand-decor__shape--light-10 {
    top: 42%;
    left: -1rem;
    width: clamp(2.5rem, 12vw, 3.75rem);
    opacity: 0.13;
    transform: rotate(40deg) scaleX(-1);
  }
}

.hero-banner-visual {
  margin: 0;
  width: 100%;
  overflow: hidden;
  background: var(--warm-zand);
}

.hero-banner-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 640px);
  object-fit: cover;
  object-position: center 20%;
}

.hero-banner-content {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(2.5rem, 6vw, 4rem);
  max-width: 760px;
}

.hero-banner-content .btn-group {
  margin-top: 1.5rem;
}

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

.hero-content {
  max-width: 680px;
}

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-tagline {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: 0.75rem;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hero-headline {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--bordeaux);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-intro {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--antraciet);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 48ch;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--antraciet);
}

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

.section-alt {
  background: var(--wit);
}

.section-header {
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.section-header p {
  margin-top: 0.75rem;
  color: var(--taupe);
}

.section-header--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--bordeaux);
  text-decoration: none;
}

.text-link:hover {
  color: var(--wijnrood);
  text-decoration: underline;
}

/* Homepage intro split */
.intro-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.intro-block h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.intro-block p {
  color: var(--antraciet);
  margin-bottom: 0.75rem;
}

/* Trust strip */
.trust-strip {
  background: var(--wit);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
  background: var(--brand-navy);
  color: var(--wit);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 4px 24px rgba(14, 9, 41, 0.12);
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.trust-value {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.trust-label {
  font-size: 0.9375rem;
  line-height: 1.45;
  opacity: 0.92;
  max-width: 18rem;
  margin-inline: auto;
}

/* Topic cards (homepage — page-header style) */
.topics-section {
  background: var(--wit);
}

/* Homepage — topics + CTA in één snap-blok met witruimte ertussen */
.page-home .home-topics-snap {
  padding-top: clamp(0.85rem, 1.75vw, 1.35rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  box-sizing: border-box;
}

.page-home .home-topics-snap__body {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.page-home .home-topics-snap .section-header {
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  flex-shrink: 0;
}

.page-home .home-topics-snap .topics-grid {
  margin-bottom: 0;
}

.page-home .home-topics-snap__cta {
  flex-shrink: 0;
  width: 100%;
}

.page-home .home-topics-snap__cta.cta-band.cta-band--card:has(> .container) {
  padding: 0;
  background: transparent;
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .topics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.topic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 11.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) 1.25rem;
  background: linear-gradient(160deg, var(--creme) 0%, var(--warm-zand) 100%);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

.topic-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 auto 0.5rem;
  width: 100%;
  max-width: 100%;
  text-align: center;
  text-wrap: balance;
  hyphens: auto;
  overflow-wrap: break-word;
  color: var(--brand-navy);
}

.topic-card p {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.9rem, 1.7vw, 1rem);
  line-height: 1.45;
  color: var(--taupe);
  text-align: center;
  text-wrap: balance;
  hyphens: auto;
  overflow-wrap: break-word;
}

@media (hover: hover) {
  .topic-card:hover,
  .topic-card:focus-visible {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }
}

.topic-card--featured {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: center;
  justify-items: stretch;
  text-align: left;
  min-height: auto;
  margin-bottom: 1.5rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: linear-gradient(160deg, var(--brand-cream) 0%, var(--warm-zand) 100%);
  border: 1px solid rgba(14, 9, 41, 0.08);
  border-left: 4px solid var(--brand-orange);
  box-shadow: var(--shadow);
}

.topic-card--featured:hover,
.topic-card--featured:focus-within {
  transform: none;
}

.topic-card__mark {
  display: block;
  width: clamp(2.5rem, 6vw, 3rem);
  height: auto;
  flex-shrink: 0;
}

.topic-card__kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 0.35rem;
}

.topic-card--featured h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  margin: 0 0 0.35rem;
  text-align: left;
  max-width: none;
}

.topic-card__quote {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: var(--brand-navy);
  margin: 0 0 0.5rem;
}

.topic-card__meta {
  font-size: clamp(0.875rem, 1.7vw, 0.9375rem);
  line-height: 1.45;
  color: var(--taupe);
  margin: 0;
}

.topic-card__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  min-width: min(100%, 220px);
}

.topic-card__actions .btn {
  text-align: center;
  white-space: nowrap;
}

.topic-card__actions .text-link {
  text-align: center;
  margin-top: 0;
}

/* Subpages — navy header (diensten, tarieven, over, blog, afspraak, contact, faq, sitemap, legal) */
.page-diensten .page-header,
.page-dienst .page-header,
.page-over .page-header,
.page-tarieven .page-header,
.page-blog .page-header,
.page-afspraak .page-header,
.page-contact .page-header,
.page-faq .page-header,
.page-sitemap .page-header,
.page-legal .page-header {
  background: var(--brand-navy);
  color: var(--wit);
}

.page-diensten .page-header,
.page-dienst .page-header,
.page-over .page-header,
.page-blog .page-header,
.page-afspraak .page-header,
.page-contact .page-header,
.page-faq .page-header,
.page-sitemap .page-header,
.page-legal .page-header {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}

.page-tarieven .page-header {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}

.page-diensten .page-header h1,
.page-dienst .page-header h1,
.page-over .page-header h1,
.page-tarieven .page-header h1,
.page-blog .page-header h1,
.page-afspraak .page-header h1,
.page-contact .page-header h1,
.page-faq .page-header h1,
.page-sitemap .page-header h1,
.page-legal .page-header h1 {
  color: var(--wit);
}

.page-diensten .page-header p,
.page-dienst .page-header p,
.page-over .page-header p,
.page-tarieven .page-header p,
.page-blog .page-header p,
.page-afspraak .page-header p,
.page-contact .page-header p,
.page-faq .page-header p,
.page-sitemap .page-header p,
.page-legal .page-header p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
}

.page-diensten .topic-card--featured {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "mark body actions";
  align-items: center;
  column-gap: clamp(1.25rem, 3vw, 2rem);
  background: var(--brand-cream);
  border: 1px solid rgba(14, 9, 41, 0.08);
}

.page-diensten .topic-card__mark {
  grid-area: mark;
  width: clamp(5rem, 12vw, 6.5rem);
  height: auto;
  align-self: center;
  flex-shrink: 0;
}

.page-diensten .topic-card__body {
  grid-area: body;
  min-width: 0;
  text-align: center;
  justify-self: center;
  align-self: center;
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-diensten .topic-card__body .topic-card__title {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  margin: 0 0 0.35rem;
  text-align: center;
  max-width: none;
  width: auto;
}

.page-diensten .topic-card__body .topic-card__quote,
.page-diensten .topic-card__body .topic-card__meta {
  text-align: center;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  max-width: none;
}

.page-diensten .topic-card__actions {
  grid-area: actions;
  align-self: center;
}

/* Tarieven — card styling aligned with topic cards */
.page-tarieven .tarieven-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.page-tarieven .page-header--tarieven-hero {
  flex-shrink: 0;
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 0 clamp(0.9rem, 2vw, 1.25rem);
}

.page-tarieven .page-header--tarieven-hero h1 {
  font-size: clamp(2rem, 4.6vw, 2.55rem);
  margin-bottom: 0.4rem;
}

.page-tarieven .page-header--tarieven-hero p {
  font-size: clamp(1rem, 1.95vw, 1.125rem);
  line-height: 1.45;
  max-width: 38rem;
}

.page-tarieven .tarieven-hero__body {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  overflow: hidden;
  background: var(--wit);
}

.page-tarieven .tarieven-hero__body > .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(0.85rem, 2vw, 1.35rem);
}

.page-tarieven .spoedstart-offer--page {
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  padding: clamp(0.85rem, 2vw, 1.15rem);
  margin-bottom: 0;
  background: var(--brand-cream);
  border: 1px solid rgba(254, 133, 4, 0.22);
  border-left: 4px solid var(--brand-orange);
  box-shadow: var(--shadow);
}

.page-tarieven .spoedstart-offer__mark {
  display: block;
  width: 1.85rem;
  height: auto;
  margin-bottom: 0.2rem;
}

.page-tarieven .spoedstart-offer--page .spoedstart-kicker {
  font-size: 0.75rem;
  margin-bottom: 0.2rem;
}

.page-tarieven .spoedstart-offer--page h2 {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  margin-bottom: 0.2rem;
}

.page-tarieven .spoedstart-offer--page .spoedstart-tagline {
  font-size: clamp(0.9rem, 1.7vw, 0.975rem);
  margin-bottom: 0.35rem;
}

.page-tarieven .spoedstart-offer--page .spoedstart-offer__intro p,
.page-tarieven .spoedstart-offer--page .spoedstart-offer__details p {
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-bottom: 0.4rem;
}

.page-tarieven .spoedstart-offer--page .spoedstart-price-note {
  margin-top: 0.35rem;
  margin-bottom: 0;
  padding: 0.45rem 0.65rem;
  font-size: 0.8rem;
}

.page-tarieven .spoedstart-offer--page .spoedstart-offer__details h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

.page-tarieven .spoedstart-offer--page .spoedstart-includes {
  margin-bottom: 0.45rem;
}

.page-tarieven .spoedstart-offer--page .spoedstart-includes li {
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  line-height: 1.4;
}

.page-tarieven .spoedstart-offer--page .spoedstart-closing {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.page-tarieven .spoedstart-offer--page .btn-group {
  margin-top: 0.5rem;
  gap: 0.5rem;
}

.page-tarieven .spoedstart-offer--page .btn-group .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
}

.page-tarieven .brand-decor--tarieven,
.page-over .brand-decor--subpage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-tarieven .tarieven-snap-section,
.page-over .about-section {
  position: relative;
  overflow: hidden;
}

.page-tarieven .tarieven-snap-section > .container,
.page-over .about-section > .container {
  position: relative;
  z-index: 1;
}

.page-tarieven .brand-decor--tarieven .brand-decor__shape--values-1,
.page-over .brand-decor--subpage .brand-decor__shape--values-1 {
  top: 6%;
  right: 4%;
  width: clamp(6.5rem, 15vw, 12rem);
  opacity: 0.18;
}

.page-tarieven .brand-decor--tarieven .brand-decor__shape--values-2,
.page-over .brand-decor--subpage .brand-decor__shape--values-2 {
  top: 28%;
  left: 2%;
  width: clamp(6rem, 13.5vw, 10.5rem);
  opacity: 0.22;
}

.page-tarieven .brand-decor--tarieven .brand-decor__shape--values-3,
.page-over .brand-decor--subpage .brand-decor__shape--values-3 {
  top: auto;
  bottom: 10%;
  right: 8%;
  width: clamp(5.75rem, 12.5vw, 10rem);
  opacity: 0.26;
}

.page-tarieven .brand-decor--tarieven .brand-decor__shape--values-4,
.page-over .brand-decor--subpage .brand-decor__shape--values-4 {
  bottom: 26%;
  left: 6%;
  width: clamp(5.5rem, 12vw, 9.5rem);
  opacity: 0.16;
}

.page-tarieven .brand-decor--tarieven .brand-decor__shape--values-5,
.page-over .brand-decor--subpage .brand-decor__shape--values-5 {
  bottom: 8%;
  right: 16%;
  width: clamp(5.75rem, 12.5vw, 10rem);
  opacity: 0.17;
}

.page-tarieven .brand-decor--tarieven .brand-decor__shape--values-6,
.page-over .brand-decor--subpage .brand-decor__shape--values-6 {
  top: 58%;
  left: 18%;
  width: clamp(5.25rem, 11.5vw, 9rem);
  opacity: 0.2;
}

@media (max-width: 767px) {
  .page-tarieven .brand-decor--tarieven .brand-decor__shape--values-4,
  .page-tarieven .brand-decor--tarieven .brand-decor__shape--values-5,
  .page-tarieven .brand-decor--tarieven .brand-decor__shape--values-6,
  .page-over .brand-decor--subpage .brand-decor__shape--values-4,
  .page-over .brand-decor--subpage .brand-decor__shape--values-5,
  .page-over .brand-decor--subpage .brand-decor__shape--values-6 {
    display: none;
  }
}

.page-tarieven .strippenkaart-card,
.page-tarieven .pricing-card,
.page-tarieven .inclusion-card {
  background: linear-gradient(160deg, var(--creme) 0%, var(--warm-zand) 100%);
  border: 1px solid rgba(14, 9, 41, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.page-tarieven .strippenkaart-card-featured,
.page-tarieven .pricing-card-featured {
  border: 1px solid rgba(254, 133, 4, 0.22);
  border-left: 4px solid var(--brand-orange);
  box-shadow: var(--shadow);
}

.page-tarieven .inclusion-included {
  border-top: none;
  border-left: 4px solid var(--brand-orange);
}

.page-tarieven .inclusion-excluded {
  border-top: none;
  border-left: 4px solid var(--brand-blue);
}

.page-tarieven .extras-list {
  gap: 1.25rem;
  max-width: none;
}

.page-tarieven .extras-list li {
  background: linear-gradient(160deg, var(--creme) 0%, var(--warm-zand) 100%);
  border: 1px solid rgba(14, 9, 41, 0.06);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2.5vw, 1.35rem) 1.25rem;
  margin: 0;
}

@media (hover: hover) {
  .page-tarieven .strippenkaart-card:hover,
  .page-tarieven .pricing-card:hover,
  .page-tarieven .inclusion-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .page-tarieven .spoedstart-offer--page {
    grid-template-columns: 1fr;
  }
}

/* Tarieven — immersive scroll (abonnementen t/m los af te nemen) */
.tarieven-scroll-section {
  position: relative;
  padding: 0;
  overflow: clip;
}

.tarieven-scroll-track {
  height: 480vh;
  height: 480dvh;
}

.tarieven-scroll-stage {
  position: sticky;
  top: var(--snap-header-offset, 5.25rem);
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: calc(100dvh - var(--snap-header-offset, 5.25rem));
  height: calc(100dvh - var(--snap-header-offset, 5.25rem));
  padding: clamp(0.5rem, 1.5vw, 0.85rem) 0;
  box-sizing: border-box;
  container-type: size;
}

.tarieven-scroll-stage__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  height: 100%;
  max-height: 100%;
}

.tarieven-scroll-header {
  flex-shrink: 0;
  margin-bottom: 0.15rem;
  padding: 0;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.tarieven-scroll-header.section-header {
  margin-bottom: 0.15rem;
}

.tarieven-scroll-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  margin-bottom: 0.15rem;
}

.tarieven-scroll-header p {
  font-size: clamp(0.95rem, 1.6vw, 1.0625rem);
  line-height: 1.4;
  margin: 0.2rem 0 0;
}

.tarieven-scroll-header.is-hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.tarieven-path {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

.tarieven-phase--cards {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  overflow: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.tarieven-phase--cards.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tarieven-phase--extra {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.tarieven-phase--extra.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tarieven-cards-path {
  position: relative;
  max-width: 58rem;
  margin-inline: auto;
  width: 100%;
  flex: 0 1 auto;
  min-height: 0;
}

.tarieven-card {
  opacity: 0;
  translate: 0 1.35rem;
  transition:
    opacity 0.55s ease,
    translate 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.tarieven-card.is-revealed {
  opacity: 1;
  translate: 0 0;
}

.tarieven-scroll-section .pricing-card {
  padding: 0.6rem 0.7rem 0.7rem;
  margin: 0;
}

.tarieven-scroll-section .pricing-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.tarieven-scroll-section .pricing-price {
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.35rem;
}

.tarieven-scroll-section .pricing-price strong {
  font-size: 0.9rem;
}

.tarieven-scroll-section .pricing-card ul {
  margin: 0;
}

.tarieven-scroll-section .pricing-card li {
  margin-bottom: 0.12rem;
  font-size: 0.72rem;
  padding-left: 0.85rem;
  line-height: 1.28;
}

.tarieven-scroll-section .pricing-card li::before {
  width: 4px;
  height: 4px;
  top: 0.5em;
}

.tarieven-cards-note {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.tarieven-cards-note .pricing-note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.tarieven-cards-note .btn {
  font-size: 0.8125rem;
  padding: 0.55rem 1.1rem;
}

.tarieven-cards-note.is-revealed {
  opacity: 1;
}

.tarieven-extra-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  translate: 0 1.35rem;
  overflow: hidden;
  transition:
    opacity 0.55s ease,
    translate 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.tarieven-extra-panel.is-revealed {
  z-index: 1;
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
}

.tarieven-extra-panel__inner {
  width: min(100%, 34rem);
  margin-inline: auto;
  text-align: center;
}

.tarieven-extra-title {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--brand-navy);
  margin: 0 0 0.65rem;
}

.tarieven-extra-lead {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--antraciet);
  margin: 0 0 0.75rem;
}

.tarieven-inclusion-card {
  text-align: left;
  padding: 0.85rem 1rem;
  margin: 0;
}

.tarieven-inclusion-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.tarieven-inclusion-card li {
  font-size: 0.8125rem;
  margin-bottom: 0.3rem;
}

.tarieven-extras-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.tarieven-extras-list li {
  margin: 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  line-height: 1.3;
}

.tarieven-scroll-section .brand-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

@container (max-height: 720px) {
  .tarieven-scroll-section .pricing-card {
    padding: 0.5rem 0.6rem 0.6rem;
  }

  .tarieven-scroll-section .pricing-card h3 {
    font-size: 0.875rem;
  }

  .tarieven-scroll-section .pricing-card li {
    font-size: 0.68rem;
    margin-bottom: 0.08rem;
  }

  .tarieven-cards-note .pricing-note {
    font-size: 0.72rem;
  }

  .tarieven-card--2 {
    margin-top: 0.1rem;
  }

  .tarieven-card--3 {
    margin-top: 0.2rem;
  }
}

@media (min-width: 768px) {
  .tarieven-cards-path {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 0.65rem;
    align-items: start;
  }

  .tarieven-card--1 {
    grid-column: 1;
  }

  .tarieven-card--2 {
    grid-column: 3;
    margin-top: 0.2rem;
  }

  .tarieven-card--3 {
    grid-column: 2;
    margin-top: 0.45rem;
  }
}

@media (max-width: 767px) {
  .tarieven-scroll-track {
    height: 420vh;
    height: 420dvh;
  }

  .tarieven-cards-path {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 17.5rem;
    margin-inline: auto;
  }

  .tarieven-card--1,
  .tarieven-card--2,
  .tarieven-card--3 {
    margin-top: 0;
    order: unset;
  }

  .tarieven-extras-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tarieven-scroll-track {
    height: auto;
  }

  .tarieven-scroll-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .tarieven-scroll-header.is-hidden {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-bottom: 1.5rem;
  }

  .tarieven-phase--cards,
  .tarieven-phase--cards.is-hidden,
  .tarieven-phase--extra {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .tarieven-phase--extra {
    margin-top: 2.5rem;
  }

  .tarieven-path {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .tarieven-card,
  .tarieven-cards-note,
  .tarieven-extra-panel {
    opacity: 1;
    translate: none;
    overflow: visible;
    pointer-events: auto;
    position: relative;
    inset: auto;
    transition: none;
  }
}

/* Values — immersive scroll + speech bubbles */
.values-section--scroll {
  position: relative;
  padding: 0;
  overflow: clip;
}

.values-scroll-track {
  height: 380vh;
  height: 380dvh;
}

.values-stage {
  position: sticky;
  top: var(--snap-header-offset, 5.25rem);
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: calc(100dvh - var(--snap-header-offset, 5.25rem));
  height: calc(100dvh - var(--snap-header-offset, 5.25rem));
  padding: clamp(1rem, 3vw, 2rem) 0;
  box-sizing: border-box;
}

.values-stage__inner {
  width: 100%;
}

.values-stage__header {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.values-path {
  position: relative;
  max-width: 62rem;
  margin-inline: auto;
}

.value-bubble {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.2rem 1.35rem 1.3rem;
  background: var(--brand-cream);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 6px 20px rgba(14, 9, 41, 0.07);
  opacity: 0;
  translate: 0 1.35rem;
  transition:
    opacity 0.55s ease,
    translate 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-bubble.is-revealed {
  opacity: 1;
  translate: 0 0;
}

.values-section--scroll .brand-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.values-section--scroll .brand-decor--values .brand-decor__shape--values-1 {
  top: 6%;
  right: 4%;
  width: clamp(6.5rem, 15vw, 12rem);
  opacity: 0.18;
}

.values-section--scroll .brand-decor--values .brand-decor__shape--values-2 {
  top: 28%;
  left: 2%;
  width: clamp(6rem, 13.5vw, 10.5rem);
  opacity: 0.22;
}

.values-section--scroll .brand-decor--values .brand-decor__shape--values-3 {
  top: auto;
  bottom: 10%;
  right: 8%;
  width: clamp(5.75rem, 12.5vw, 10rem);
  opacity: 0.26;
}

.values-section--scroll .brand-decor--values .brand-decor__shape--values-4 {
  bottom: 26%;
  left: 6%;
  width: clamp(5.5rem, 12vw, 9.5rem);
  opacity: 0.16;
}

.values-section--scroll .brand-decor--values .brand-decor__shape--values-5 {
  bottom: 8%;
  right: 16%;
  width: clamp(5.75rem, 12.5vw, 10rem);
  opacity: 0.17;
}

.values-section--scroll .brand-decor--values .brand-decor__shape--values-6 {
  top: 58%;
  left: 18%;
  width: clamp(5.25rem, 11.5vw, 9rem);
  opacity: 0.2;
}

.brand-decor--values .brand-decor__shape--values-1 {
  top: 8%;
  right: 6%;
  width: clamp(5rem, 12vw, 9.5rem);
  opacity: 0.16;
}

.brand-decor--values .brand-decor__shape--values-2 {
  top: 22%;
  left: 4%;
  width: clamp(4.5rem, 10vw, 8.25rem);
  opacity: 0.2;
}

.brand-decor--values .brand-decor__shape--values-3 {
  top: 48%;
  right: 12%;
  width: clamp(4.25rem, 9.5vw, 7.5rem);
  opacity: 0.28;
}

.brand-decor--values .brand-decor__shape--values-4 {
  bottom: 28%;
  left: 8%;
  width: clamp(4.5rem, 10vw, 8rem);
  opacity: 0.14;
}

.brand-decor--values .brand-decor__shape--values-5 {
  bottom: 12%;
  right: 18%;
  width: clamp(4.75rem, 10.5vw, 8.5rem);
  opacity: 0.15;
}

.brand-decor--values .brand-decor__shape--values-6 {
  top: 62%;
  left: 22%;
  width: clamp(4rem, 9vw, 7rem);
  opacity: 0.18;
}

.brand-decor--values .brand-decor__shape--values-7 {
  top: 34%;
  left: 44%;
  width: clamp(3.75rem, 8.5vw, 6.5rem);
  opacity: 0.12;
}

.brand-decor--values .brand-decor__shape--values-8 {
  bottom: 38%;
  right: 4%;
  width: clamp(4.25rem, 9.5vw, 7.25rem);
  opacity: 0.13;
}

.value-bubble::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: var(--brand-cream);
  border-radius: 0 0 0.3rem 0;
  transform: rotate(45deg);
  box-shadow: 3px 3px 8px rgba(14, 9, 41, 0.04);
}

.value-bubble h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.3rem);
  margin-bottom: 0.45rem;
}

.value-bubble p {
  font-size: clamp(0.975rem, 1.8vw, 1.0625rem);
  color: var(--antraciet);
  margin: 0;
  line-height: 1.5;
}

.value-bubble--1 h3 {
  color: var(--brand-orange);
}

.value-bubble--2 h3 {
  color: var(--brand-blue);
}

.value-bubble--3 h3 {
  color: var(--brand-navy);
}

@media (min-width: 768px) {
  .values-path {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem 1.25rem;
    align-items: start;
    padding: 0.35rem 0;
  }

  .value-bubble--1 {
    grid-column: 1;
    transform: translateY(0);
  }

  .value-bubble--1::after {
    right: auto;
    left: 50%;
    bottom: -0.4rem;
    margin-left: -0.45rem;
  }

  .value-bubble--2 {
    grid-column: 3;
    transform: translateY(0.35rem);
  }

  .value-bubble--2::after {
    left: 50%;
    right: auto;
    bottom: -0.4rem;
    top: auto;
    margin-left: -0.45rem;
    border-radius: 0 0 0.3rem 0;
    transform: rotate(45deg);
  }

  .value-bubble--3 {
    grid-column: 2;
    transform: translateY(1.15rem);
  }

  .value-bubble--3::after {
    left: 50%;
    right: auto;
    top: -0.4rem;
    bottom: auto;
    margin-left: -0.45rem;
    border-radius: 0.3rem 0 0 0;
    transform: rotate(45deg);
  }
}

@media (max-width: 767px) {
  .values-scroll-track {
    height: 320vh;
    height: 320dvh;
  }

  .values-path {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 26rem;
    margin-inline: auto;
  }

  .value-bubble--1 {
    order: 1;
  }

  .value-bubble--2 {
    order: 3;
  }

  .value-bubble--3 {
    order: 2;
  }

  .values-section--scroll .brand-decor--values .brand-decor__shape--values-4,
  .values-section--scroll .brand-decor--values .brand-decor__shape--values-5,
  .values-section--scroll .brand-decor--values .brand-decor__shape--values-6 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .values-scroll-track {
    height: auto;
  }

  .values-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .value-bubble {
    opacity: 1;
    translate: none;
    transition: none;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .values-path {
    gap: 0.65rem 0.9rem;
  }
}
/* Homepage blog preview */
.home-articles-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.home-articles-section .section-header--compact {
  margin-bottom: 1.25rem;
}

.home-articles-section .section-header--compact h2 {
  margin-bottom: 0;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.875rem;
}

.home-blog-grid .blog-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.75rem;
  align-items: center;
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  padding: 0.6rem;
}

.home-blog-grid .blog-card-image {
  display: block;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.home-blog-grid .blog-card-image img {
  width: 100%;
  height: 64px;
  object-fit: cover;
}

.home-blog-grid .blog-card-body {
  padding: 0;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.home-blog-grid .blog-card-body h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.home-blog-grid .blog-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.home-blog-grid .blog-card-body h3 a:hover {
  color: var(--bordeaux);
}

.home-blog-grid .blog-card-body p {
  font-size: 0.8125rem;
  color: var(--taupe);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.home-blog-grid .text-link {
  margin-top: 0;
  font-size: 0.85rem;
}

.home-blog-more {
  margin-top: 1rem;
  text-align: center;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

a.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card-link:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--beige);
}

.service-card-link:hover h3 {
  color: var(--brand-navy);
}

.service-card-featured {
  border-color: var(--brand-orange);
  border-left-width: 4px;
}

.service-card-meta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 0.75rem;
}

.service-card-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--brand-orange);
}

.service-detail {
  max-width: 720px;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr min(360px, 38%);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.service-detail-layout .service-detail {
  order: 1;
  max-width: none;
}

.service-detail-visual {
  order: 2;
  margin: 0;
  position: sticky;
  top: 100px;
}

.service-detail-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.service-detail-list {
  list-style: none;
}

.service-detail-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.service-card h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--beige);
}

.service-card ul {
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.975rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--oudroze);
  border-radius: 50%;
}

/* Dienstenpagina */
.section-compact-top {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.section-compact-top + .section {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.spoedstart-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  background: var(--brand-cream);
  border: 1px solid rgba(14, 9, 41, 0.08);
  border-left: 4px solid var(--brand-orange);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 3.5vw, 2rem);
  box-shadow: var(--shadow);
}

.spoedstart-banner__mark {
  flex-shrink: 0;
}

.spoedstart-banner__body h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.spoedstart-banner__lead {
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.spoedstart-banner__meta {
  font-size: 0.9375rem;
  color: var(--taupe);
  margin-bottom: 0;
}

.spoedstart-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: min(100%, 220px);
}

.spoedstart-banner__actions .btn {
  text-align: center;
  white-space: nowrap;
}

.service-page-problem {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--brand-blue);
  max-width: 36rem;
  margin-inline: auto;
}

.page-dienst .page-header .service-page-problem {
  color: rgba(255, 255, 255, 0.9);
}

.page-dienst .back-link {
  color: var(--brand-navy);
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.page-dienst .back-link:hover {
  color: var(--brand-orange);
}

.page-dienst .service-detail h2 {
  color: var(--brand-navy);
}

.page-dienst .service-extras-section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.service-extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.service-extras-grid > * {
  min-width: 0;
}

.service-extras-grid .service-help-band,
.service-extras-grid .service-scenario {
  max-width: none;
  margin-inline: 0;
}

.service-extras-side {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-self: start;
}

.service-extras-grid .service-help-band {
  height: auto;
}

.service-extras-grid .service-scenario {
  height: auto;
}

.service-extras-grid .service-help-band__list {
  grid-auto-flow: row;
  grid-template-columns: 1fr;
  grid-template-rows: none;
}

.service-help-band {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--brand-cream);
  color: var(--brand-navy);
  border-radius: var(--radius);
  border: 1px solid rgba(14, 9, 41, 0.08);
  box-shadow: 0 4px 18px rgba(14, 9, 41, 0.05);
}

.service-help-band .service-scenario__label {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  color: var(--brand-navy);
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.service-scenario__label {
  font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-orange);
  margin: 0 0 0.75rem;
}

.service-scenario .service-scenario__label {
  font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
}

.service-help-band__list {
  list-style: none;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  gap: 0.5rem 1.5rem;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.service-help-band__list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--brand-navy);
  margin-bottom: 0;
  min-width: 0;
}

.service-help-band__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.service-help-band__list a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color var(--transition), font-size var(--transition);
}

.service-help-band__list a:hover,
.service-help-band__list a:focus-visible {
  color: var(--brand-orange);
  font-size: 1.0625rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-scenario {
  max-width: 46rem;
  margin-inline: auto;
  padding: 1.75rem 2rem;
  background: var(--brand-lavender);
  border-radius: var(--radius);
  border: 1px solid rgba(143, 160, 213, 0.28);
  box-shadow: 0 4px 18px rgba(14, 9, 41, 0.05);
}

.service-scenario h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  color: var(--brand-navy);
  margin-top: 0;
  margin-bottom: 1rem;
}

.service-scenario h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-scenario ol {
  margin: 0.5rem 0 0 1.25rem;
}

.service-scenario li {
  margin-bottom: 0.35rem;
}

a.service-pillar-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-pillar-link:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--beige);
}

.service-pillar-cta {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--brand-orange);
}

.service-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-pillar {
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.service-pillar-problem {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  color: var(--brand-blue);
  text-align: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--warm-zand);
}

.service-pillar h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-pillar ul {
  list-style: none;
}

.service-pillar li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
}

.service-pillar li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.btn-group--center {
  justify-content: center;
}

/* CTA band */
.cta-band {
  background: var(--brand-navy);
  color: var(--wit);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--wit);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.9;
  max-width: 520px;
  margin-inline: auto;
}

.cta-band .btn-primary {
  background: var(--brand-orange);
  color: var(--wit);
  margin-top: 1.5rem;
}

.cta-band .btn-group {
  margin-top: 1.5rem;
}

.cta-band .btn-group .btn-primary {
  margin-top: 0;
}

.cta-band .btn-secondary {
  background: transparent;
  color: var(--wit);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--wit);
  color: var(--wit);
}

.cta-band .btn-primary:hover {
  background: var(--brand-orange-hover);
  color: var(--wit);
}

/* CTA als afgerond navy-blok op witte achtergrond (blog + subpagina's) */
.cta-band.cta-band--card {
  margin-block: 0;
  text-align: center;
}

.cta-band.cta-band--card:has(> .container) {
  background: var(--wit);
  padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.cta-band.cta-band--card > .container {
  background: var(--brand-navy);
  color: var(--wit);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  box-sizing: border-box;
}

.cta-band.cta-band--card:not(:has(> .container)) {
  background: var(--brand-navy);
  color: var(--wit);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2rem);
}

.cta-band--card h2 {
  color: var(--wit);
  margin-bottom: 0.5rem;
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
}

.cta-band--card p {
  margin-bottom: 0;
  font-size: 0.9375rem;
  max-width: none;
  opacity: 0.9;
  margin-inline: auto;
}

.cta-band--card .btn-group {
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.cta-band--card .btn-group .btn {
  margin-top: 0;
}

.cta-band--card > .container > .btn-primary,
.cta-band--card:not(:has(> .container)) > .btn-primary {
  margin-top: 1rem;
}

.cta-band--card .btn {
  width: auto;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.page-dienst .service-page-cta {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
}

.page-dienst .service-page-cta h2 {
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  margin-bottom: 0.5rem;
}

.page-dienst .service-page-cta p {
  font-size: 0.9375rem;
  max-width: none;
  margin-bottom: 0;
}

.page-dienst .service-page-cta .btn-group {
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.page-dienst .service-page-cta .btn {
  width: auto;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

/* About page */
.about-layout {
  display: grid;
  grid-template-columns: 1fr min(320px, 38%);
  gap: 3rem;
  align-items: start;
}

.about-content {
  grid-column: 1;
  grid-row: 1;
}

.about-profile {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  align-self: start;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.page-over .about-photo {
  background: linear-gradient(160deg, var(--creme) 0%, var(--warm-zand) 100%);
  box-shadow: var(--shadow);
}

.page-over .about-content h2 {
  color: var(--brand-navy);
}

.page-over .about-content p {
  color: var(--antraciet);
}

.linkedin-badge {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--brand-navy);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.linkedin-badge:hover {
  color: var(--brand-orange);
  transform: translateY(-1px);
}

.linkedin-badge:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: 6px;
}

.linkedin-badge svg {
  display: block;
}

.about-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.contact-box {
  background: var(--warm-zand);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

.contact-box h3 {
  margin-bottom: 0.75rem;
}

.contact-box a {
  font-weight: 600;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pricing-card-featured {
  border-color: var(--bordeaux);
  box-shadow: 0 4px 20px rgba(14, 9, 41, 0.1);
}

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

.pricing-lead {
  font-weight: 600;
  color: var(--antraciet);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.pricing-price {
  font-size: 0.9375rem;
  color: var(--antraciet);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--warm-zand);
}

.pricing-price strong {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.pricing-includes-label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--brand-navy);
}

.pricing-fit {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 9, 41, 0.08);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--taupe);
}

.pricing-fit strong {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.pricing-card ul {
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--oudroze);
  border-radius: 50%;
}

.pricing-tier {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pricing-hours {
  font-size: 0.9375rem;
  color: var(--antraciet);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--warm-zand);
}

.pricing-hours strong {
  color: var(--bordeaux);
  font-size: 1.125rem;
}

.pricing-extra::before {
  background: var(--bordeaux);
}

.pricing-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.975rem;
  color: var(--taupe);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* HR Spoedstart */
.spoedstart-offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
  background: var(--brand-cream);
  border: 1px solid rgba(14, 9, 41, 0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}

.spoedstart-kicker {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.spoedstart-offer h2 {
  margin-bottom: 0.75rem;
}

.spoedstart-offer__heading {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  margin-bottom: 0.5rem;
}

.spoedstart-offer__heading h2 {
  margin-bottom: 0;
}

.spoedstart-tagline {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

.spoedstart-offer__intro p {
  font-size: 0.975rem;
}

.spoedstart-price-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--wit);
  border-radius: var(--radius);
  border: 1px solid var(--warm-zand);
  font-size: 0.975rem;
}

.spoedstart-price-note strong {
  color: var(--brand-navy);
}

.spoedstart-offer__details h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.spoedstart-includes {
  list-style: none;
  margin-bottom: 1.25rem;
}

.spoedstart-includes li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.spoedstart-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.spoedstart-closing {
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 0;
}

.spoedstart-actions {
  margin-top: 1.5rem;
}

.spoedstart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.page-dienst .spoedstart-grid.article-split-row {
  align-items: start;
}

.spoedstart-split-side {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.25rem);
  min-width: 0;
}

.page-dienst .spoedstart-split-side .article-split-col--white {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-dienst .spoedstart-split-side .article-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.65rem;
}

.page-dienst .spoedstart-split-side .article-content p,
.page-dienst .spoedstart-split-side .article-content li {
  font-size: 0.9375rem;
}

.page-dienst .spoedstart-split-side .article-content ul {
  margin: 0.65rem 0 0.65rem 1.25rem;
}

.page-dienst .spoedstart-split-side .article-content li {
  margin-bottom: 0.35rem;
}

.page-dienst .spoedstart-split-side .article-content p:last-child {
  margin-bottom: 0;
}

.page-dienst .spoedstart-cta.service-page-cta {
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1.25rem, 2.5vw, 1.5rem);
}

.page-dienst .spoedstart-cta .btn-group {
  margin-top: 0;
}

.page-dienst .service-scenario-section--full .service-scenario {
  max-width: none;
  margin-inline: 0;
  width: 100%;
}

.page-dienst .service-scenario-section--full {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.spoedstart-card {
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.spoedstart-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.spoedstart-card p {
  font-size: 0.975rem;
}

.spoedstart-card ul {
  list-style: none;
  margin: 0.75rem 0 1rem;
}

.spoedstart-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
}

.spoedstart-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--brand-blue);
  border-radius: 50%;
}

.spoedstart-section {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.spoedstart-section + .section {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.spoedstart-section .spoedstart-offer {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
}

.spoedstart-section .spoedstart-offer h2 {
  margin-bottom: 0.5rem;
}

.spoedstart-section .spoedstart-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 0.65rem;
}

.spoedstart-section .spoedstart-offer__intro p,
.spoedstart-section .spoedstart-offer__details p,
.spoedstart-section .spoedstart-card p {
  font-size: 0.9rem;
}

.spoedstart-section .spoedstart-offer__intro p + p,
.spoedstart-section .spoedstart-card p + p {
  margin-top: 0.65rem;
}

.spoedstart-section .spoedstart-price-note {
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.spoedstart-section .spoedstart-offer__details h3,
.spoedstart-section .spoedstart-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.65rem;
}

.spoedstart-section .spoedstart-includes {
  margin-bottom: 0.85rem;
}

.spoedstart-section .spoedstart-includes li,
.spoedstart-section .spoedstart-card li {
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
}

.spoedstart-section .spoedstart-card {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.spoedstart-section .spoedstart-card ul {
  margin: 0.5rem 0 0.75rem;
}

.spoedstart-section .spoedstart-grid {
  gap: 1.25rem;
}

.spoedstart-section .spoedstart-actions,
.spoedstart-section .btn-group {
  margin-top: 0.85rem;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.inclusion-grid--single {
  max-width: 32rem;
  margin-inline: auto;
}

.inclusion-card {
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  padding: 2rem;
}

.inclusion-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.inclusion-included {
  border-top: 4px solid var(--bordeaux);
}

.inclusion-excluded {
  border-top: 4px solid var(--taupe);
}

.inclusion-card ul {
  list-style: none;
}

.inclusion-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.inclusion-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bordeaux);
  font-weight: 700;
}

.inclusion-excluded li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--taupe);
}

.extras-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem 1.5rem;
  max-width: 52rem;
}

.extras-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.975rem;
}

.extras-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--oudroze);
  border-radius: 50%;
}

.strippenkaart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.strippenkaart-card {
  display: block;
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition);
}

@media (hover: hover) {
  .strippenkaart-card:hover,
  .strippenkaart-card:focus-visible {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }
}

.strippenkaart-card-featured {
  border-color: var(--bordeaux);
  box-shadow: 0 4px 20px rgba(14, 9, 41, 0.1);
}

.strippenkaart-hours {
  font-weight: 700;
  color: var(--bordeaux);
  margin-bottom: 0.5rem;
}

.strippenkaart-price {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wijnrood);
}

.strippenkaart-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--taupe);
}

/* Blog */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 960px;
  margin-inline: auto;
}

.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.blog-card-image {
  display: block;
  overflow: hidden;
  min-height: 200px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin-bottom: 0.75rem;
}

.blog-card h3 a {
  text-decoration: none;
  color: var(--wijnrood);
}

.blog-card h3 a:hover {
  color: var(--bordeaux);
}

.blog-card p {
  font-size: 0.975rem;
  color: var(--taupe);
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
}

.blog-cta {
  margin-top: 2.5rem;
  padding: 2rem 1.75rem;
  background: var(--brand-navy);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 28px rgba(14, 9, 41, 0.28);
}

.blog-cta p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--wit);
  margin-bottom: 1.25rem;
}

.blog-cta .btn {
  text-decoration: none;
  background: var(--brand-orange);
  color: var(--wit);
}

.blog-cta .btn:hover {
  background: var(--brand-orange-hover);
  color: var(--wit);
}

.blog-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.blog-cta .btn-secondary {
  background: transparent;
  color: var(--wit);
  border: 2px solid rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.blog-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--wit);
  border-color: var(--wit);
}

/* Blog — standaard kleurstelling (navy header, witte sectie, merkkaarten) */
.page-blog .blog-card {
  background: linear-gradient(160deg, var(--creme) 0%, var(--warm-zand) 100%);
  border: 1px solid rgba(14, 9, 41, 0.06);
}

.page-blog .blog-card h3 a {
  color: var(--brand-navy);
}

.page-blog .blog-card h3 a:hover {
  color: var(--brand-orange);
}

.page-blog .read-more {
  color: var(--brand-orange);
  text-decoration: none;
}

.page-blog .read-more:hover {
  color: var(--brand-orange-hover);
}

.page-blog .back-link {
  color: var(--brand-navy);
  text-decoration: none;
}

.page-blog .back-link:hover {
  color: var(--brand-orange);
}

/* Kleurritme: wit → zand → wit → lavendel (herhalend) */
.content-section,
.page-blog .blog-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.content-section > .container,
.page-blog .blog-section > .container {
  position: relative;
  z-index: 1;
}

.content-section--white,
.page-blog .blog-section--intro,
.page-blog .blog-section--white,
.page-blog .blog-section--faq {
  background: var(--wit);
}

.content-section--first {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-blog .blog-section--intro {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-blog .article-post > .blog-section:not(.blog-section--intro):not(.blog-section--faq):not(.blog-section--split) {
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
}

.page-blog .blog-section--split {
  background: var(--wit);
  padding: clamp(0.625rem, 1.5vw, 1rem) 0;
}

.page-blog .article-post > .blog-section--split:first-of-type {
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}

.content-section--cream,
.page-blog .blog-section--cream {
  background: var(--brand-cream);
  border-block: 1px solid rgba(14, 9, 41, 0.06);
}

.content-section--lavender,
.page-blog .blog-section--lavender {
  background: var(--brand-lavender);
  border-block: 1px solid rgba(143, 160, 213, 0.28);
}

.content-section--cream .form-card,
.content-section--cream .booking-panel,
.page-blog .blog-section--cream .blog-card {
  background: var(--wit);
  border-color: rgba(14, 9, 41, 0.08);
  box-shadow: 0 4px 18px rgba(14, 9, 41, 0.06);
}

.content-section--white .booking-panel,
.page-afspraak .blog-section--white .booking-panel {
  background: var(--brand-cream);
  border: 1px solid rgba(14, 9, 41, 0.08);
  box-shadow: 0 4px 18px rgba(14, 9, 41, 0.05);
}

.page-blog .blog-section .article-content > :first-child {
  margin-top: 0;
}

.page-blog .blog-section--faq {
  background: var(--wit);
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.page-blog .article-faq {
  margin-top: 0;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--brand-cream);
  border-radius: var(--radius);
  border: 1px solid rgba(14, 9, 41, 0.08);
  box-shadow: 0 4px 18px rgba(14, 9, 41, 0.05);
}

.page-blog .article-faq .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.25rem);
  align-items: start;
}

.page-blog .article-faq .faq-item {
  margin-bottom: 0;
  min-width: 0;
}

.page-blog .article-faq .faq-disclosure {
  background: var(--wit);
  border: 1px solid rgba(14, 9, 41, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(14, 9, 41, 0.04);
  overflow: hidden;
}

.page-blog .article-faq .faq-disclosure__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none;
}

.page-blog .article-faq .faq-disclosure__summary::-webkit-details-marker {
  display: none;
}

.page-blog .article-faq .faq-disclosure__summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.15rem;
  border-right: 2px solid var(--brand-orange);
  border-bottom: 2px solid var(--brand-orange);
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.page-blog .article-faq .faq-disclosure[open] .faq-disclosure__summary::after {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.page-blog .article-faq .faq-disclosure__summary:hover {
  color: var(--brand-orange);
}

.page-blog .article-faq .faq-disclosure__summary:focus {
  outline: none;
}

.page-blog .article-faq .faq-disclosure__summary:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: -2px;
}

.page-blog .article-faq .faq-disclosure__answer {
  padding: 0 1rem 1rem;
}

.page-blog .article-faq .faq-disclosure__answer p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--antraciet);
}

.page-blog .page-header--article {
  padding: 0;
  overflow: hidden;
}

.page-blog .article-image--header {
  width: 100%;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.page-blog .article-image--header img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  max-height: clamp(14rem, 40vw, 24rem);
  object-fit: cover;
  object-position: center;
}

.page-blog .page-header--article > .container {
  position: relative;
  width: min(100% - 2rem, var(--max-width));
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.page-blog .page-header--article > .container > .back-link {
  position: absolute;
  left: 0;
  bottom: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  z-index: 1;
}

.page-blog .page-header--article > .container > .back-link:hover {
  color: var(--brand-orange);
}

.page-blog .article-content h2,
.page-blog .article-faq > h2 {
  color: var(--brand-navy);
}

.page-blog .article-faq > h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-blog .page-header--article h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  max-width: 52rem;
  margin-inline: auto;
}

.article-date {
  font-size: 0.875rem;
  color: var(--taupe);
  margin: 0.75rem 0 0;
}

.article-author::before {
  content: "·";
  margin-inline: 0.65rem;
}

.page-blog .page-header--article .article-date {
  text-align: center;
}

/* Blogartikel: kinderen (secties + banner) direct in main-layout, geen extra wrapper */
.page-blog .article-post {
  display: contents;
}

/* Blogartikelen: split-kolommen in volle breedte (zoals intro) */
.page-blog .article-post .blog-section--split > .container,
.page-blog .article-post .blog-section--intro > .container,
.page-blog .article-post .blog-section--faq > .container {
  width: min(100% - 2rem, var(--max-width));
}

.page-blog .article-split-row,
.page-dienst .article-split-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.page-blog .article-split-col,
.page-dienst .article-split-col {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
}

.page-blog .article-split-col--cream,
.page-dienst .article-split-col--cream {
  background: var(--brand-cream);
  border: 1px solid rgba(14, 9, 41, 0.06);
}

.page-blog .article-split-col--white,
.page-blog .article-intro-body,
.page-dienst .article-split-col--white {
  background: var(--wit);
  border: 1px solid rgba(14, 9, 41, 0.06);
  box-shadow: 0 2px 12px rgba(14, 9, 41, 0.04);
}

.page-blog .article-split-col .article-content > :first-child,
.page-dienst .article-split-col .article-content > :first-child {
  margin-top: 0;
}

.page-blog .article-intro-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.page-blog .article-intro-body {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
}

.page-blog .article-intro-body .article-intro {
  margin-bottom: 1rem;
}

.page-blog .article-intro-body p:last-child {
  margin-bottom: 0;
}

.page-blog .article-summary.service-scenario {
  margin: 0;
  max-width: none;
}

.page-blog .article-summary.service-scenario .service-scenario__label {
  margin-bottom: 1rem;
}

.page-blog .article-summary.service-scenario ul {
  margin: 0 0 0 1.25rem;
  padding: 0;
}

.page-blog .article-summary.service-scenario li {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--antraciet);
}

.page-blog .article-summary.service-scenario li:last-child {
  margin-bottom: 0;
}

/* Article */
.article-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
}

.article-top .back-link {
  margin-bottom: 0;
  white-space: nowrap;
}

.article-header {
  max-width: 100%;
  margin-bottom: 2rem;
}

.article-content {
  max-width: 100%;
}

.article-top .article-image {
  width: 100%;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(14, 9, 41, 0.06);
}

.article-top .article-image img {
  display: block;
  width: 100%;
  height: clamp(6.5rem, 16vw, 10rem);
  aspect-ratio: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.article-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--antraciet);
  margin-bottom: 2rem;
}

.article-summary {
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.125rem 1.75rem 0.875rem;
  background: var(--brand-lavender);
  border-radius: var(--radius);
  border: 1px solid rgba(143, 160, 213, 0.35);
}

.article-summary h2,
.article-content .article-summary h2 {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.article-summary ul {
  margin: 0 0 0 1.25rem;
  padding-bottom: 0;
}

.article-summary li {
  margin-bottom: 0.45rem;
}

.article-summary li:last-child {
  margin-bottom: 0;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-faq {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}

.article-faq > h2 {
  margin-bottom: 1.25rem;
}

.article-faq .faq-item h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--antraciet);
  margin-bottom: 0.25rem;
}

.article-faq .faq-list {
  max-width: 100%;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0 1rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 640px) {
  .article-top {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1rem;
  }

  .article-top .back-link {
    white-space: normal;
  }

  .article-top .article-image img {
    height: clamp(9rem, 42vw, 12rem);
  }
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-details dt {
  font-weight: 700;
  color: var(--wijnrood);
  margin-top: 1rem;
}

.contact-details dd {
  margin-left: 0;
}

.form-card {
  background: var(--wit);
  border: 1px solid rgba(14, 9, 41, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 18px rgba(14, 9, 41, 0.06);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(14, 9, 41, 0.12);
  border-radius: 8px;
  background: var(--wit);
  color: var(--antraciet);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(14, 9, 41, 0.08);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

.form-group .optional {
  font-weight: 400;
  color: var(--taupe);
  font-size: 0.875rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.booking-form textarea {
  min-height: 96px;
}

.form-hint {
  font-size: 0.875rem;
  color: var(--taupe);
  margin-top: 0.35rem;
}

.form-hint-sm {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

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

.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-error {
  background: #ffebee;
  border: 1px solid #ef9a9a;
  color: #c62828;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* Page header */
.page-header {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: linear-gradient(160deg, var(--creme) 0%, var(--warm-zand) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header h1,
.page-header p {
  margin-inline: auto;
}

.page-header p {
  color: var(--taupe);
  max-width: 40rem;
}

.page-header--compact {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}

.page-header--compact h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.35rem;
}

.page-header--compact p {
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  line-height: 1.45;
  max-width: 36rem;
}

.page-header--compact + .section {
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.page-header--centered {
  padding: clamp(1.25rem, 2.5vw, 2rem) 0;
}

.page-header--centered h1 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.page-header--centered p {
  font-size: clamp(1.0625rem, 2.2vw, 1.3rem);
  line-height: 1.5;
  color: var(--antraciet);
}

.page-header--centered + .section {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

/* Footer */
.site-footer {
  background: var(--brand-navy);
  color: var(--warm-zand);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo .logo-mark {
  height: 44px;
  max-width: none;
  aspect-ratio: 1;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9375rem;
  opacity: 0.8;
}

.footer-contact h4 {
  color: var(--brand-blue);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--brand-blue);
}

.footer-contact p + p {
  margin-top: 0.35rem;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  font: inherit;
}

.footer-contact a:hover {
  color: var(--wit);
}

.footer-sitemap-link {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-sitemap-link a {
  color: var(--warm-zand);
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.75;
}

.footer-sitemap-link a:hover {
  opacity: 1;
  color: var(--wit);
}

.sitemap-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 800px;
}

.page-sitemap .sitemap-section h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

.sitemap-section h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--taupe);
  margin-bottom: 1rem;
}

.sitemap-page-list {
  list-style: none;
}

.sitemap-page-list li {
  margin-bottom: 0.5rem;
}

.page-sitemap .sitemap-page-list a {
  color: var(--brand-navy);
}

.sitemap-page-list a {
  text-decoration: none;
  font-weight: 600;
}

.sitemap-page-list a:hover {
  text-decoration: underline;
}

/* FAQ (SEO) */
.page-faq .faq-list {
  padding: 1.5rem 1.75rem;
  background: var(--brand-cream);
  border-radius: var(--radius);
  border: 1px solid rgba(14, 9, 41, 0.08);
  box-shadow: 0 4px 18px rgba(14, 9, 41, 0.05);
  width: min(100%, 46rem);
  max-width: 46rem;
  margin-inline: auto;
}

.faq-list {
  max-width: 720px;
}

.page-faq .faq-item h2 {
  color: var(--brand-navy);
}

.faq-item {
  margin-bottom: 1.25rem;
}

.faq-item h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--antraciet);
  margin-bottom: 0.25rem;
}

.faq-item p {
  font-size: 0.9375rem;
  color: var(--taupe);
}

.legal-content {
  max-width: 720px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: var(--taupe);
}

.legal-meta__sep {
  color: rgba(14, 9, 41, 0.25);
}

.legal-download {
  font-weight: 500;
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-download:hover {
  color: var(--brand-navy);
}

.legal-articles {
  display: grid;
  gap: 2rem;
}

.legal-article h2 {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin: 0 0 0.85rem;
  line-height: 1.35;
}

.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-list > li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--antraciet);
}

.legal-list > li > :not(.legal-list__number):not(.legal-list--letters) {
  grid-column: 2;
}

.legal-list__number {
  font-weight: 600;
  color: var(--brand-navy);
}

.legal-list--letters {
  grid-column: 2;
  margin: 0.65rem 0 0;
  padding-left: 1.25rem;
  list-style: lower-alpha;
}

.legal-list--letters > li {
  display: list-item;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.legal-list > li:last-child {
  margin-bottom: 0;
}

.go-live-notice {
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--antraciet);
}

/* Booking */
.booking-container {
  max-width: 960px;
}

.cancel-card {
  max-width: 520px;
  margin: 0 auto;
}

.cancel-lead {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.cancel-note {
  color: var(--taupe);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.cancel-actions {
  margin-top: 0.5rem;
}

.booking-setup-notice {
  background: var(--warm-zand);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  margin-bottom: 0;
  align-items: start;
}

.booking-panel {
  background: var(--wit);
  border: 1px solid var(--warm-zand);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.booking-hint {
  font-size: 0.875rem;
  color: var(--taupe);
  margin-top: 1rem;
  margin-bottom: 0;
}

.booking-selected-date-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--wijnrood);
  margin-bottom: 1rem;
  text-transform: capitalize;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-month-label {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wijnrood);
  text-transform: capitalize;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border: 1px solid var(--warm-zand);
  border-radius: 50%;
  background: var(--creme);
  color: var(--antraciet);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.calendar-nav:hover:not(:disabled) {
  border-color: var(--bordeaux);
  color: var(--bordeaux);
}

.calendar-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0.25rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.calendar-day {
  aspect-ratio: 1;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--antraciet);
  cursor: default;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.calendar-day.is-outside {
  color: var(--taupe);
  opacity: 0.35;
}

.calendar-day.is-outside.is-available {
  opacity: 1;
  color: #2e6b32;
}

.calendar-day.is-disabled {
  color: var(--taupe);
  opacity: 0.45;
}

.calendar-day.is-bookable {
  cursor: pointer;
  border-color: rgba(14, 9, 41, 0.1);
  background: var(--wit);
}

.calendar-day.is-bookable:hover {
  border-color: var(--beige);
  background: var(--brand-cream);
}

.calendar-day.is-today:not(.is-selected) {
  border-color: var(--beige);
}

.calendar-day.is-available {
  background: #edf7ee;
  border-color: #b8ddb9;
  color: #2e6b32;
  cursor: pointer;
}

.calendar-day.is-available:hover {
  background: #dff0e0;
  border-color: #7cb87f;
}

.calendar-day.is-selected {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--wit);
}

.booking-times-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.booking-times-empty {
  grid-column: 1 / -1;
  margin-top: 0;
}

.booking-time-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--warm-zand);
  border-radius: 10px;
  background: var(--creme);
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.booking-time-chip:hover {
  border-color: var(--bordeaux);
  transform: translateY(-1px);
}

.booking-time-chip.is-selected {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--wit);
}

.booking-time-chip.is-unavailable {
  background: #f3f3f3;
  border-color: #ddd;
  color: var(--taupe);
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
}

.booking-time-chip.is-unavailable:hover {
  border-color: #ddd;
  transform: none;
}

.booking-time-chip.is-unavailable .booking-time-end {
  opacity: 0.65;
}

.booking-time-start {
  font-size: 1rem;
  font-weight: 700;
}

.booking-time-end {
  font-size: 0.75rem;
  opacity: 0.8;
}

.booking-form {
  scroll-margin-top: 6rem;
}

.booking-form h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

.booking-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.booking-success h2 {
  color: #2e7d32;
  margin-bottom: 0.75rem;
}

.booking-meet-actions {
  margin: 1.25rem 0;
}

.booking-meet-link {
  display: inline-block;
  text-decoration: none;
}

.booking-email-warning {
  color: #8a4b00;
  font-weight: 600;
  margin-top: 0.75rem;
}

/* Afspraak- en contactpagina — kleurritme en typografie in lijn met blog */
.page-afspraak .page-header--article,
.page-contact .page-header--article {
  padding: 0;
  overflow: hidden;
}

.page-afspraak .page-header--article > .container,
.page-contact .page-header--article > .container {
  position: relative;
  width: min(100% - 2rem, var(--max-width));
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.page-afspraak .page-header--article h1,
.page-contact .page-header--article h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  max-width: 52rem;
  margin-inline: auto;
}

.page-afspraak .page-header--article p,
.page-contact .page-header--article p {
  margin-inline: auto;
  text-align: center;
  max-width: 36rem;
}

.page-afspraak .blog-section,
.page-contact .blog-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.page-afspraak .blog-section > .container,
.page-contact .blog-section > .container {
  position: relative;
  z-index: 1;
}

.page-afspraak .blog-section--white,
.page-afspraak .blog-section--intro,
.page-contact .blog-section--white,
.page-contact .blog-section--intro {
  background: var(--wit);
}

.page-afspraak .blog-section--intro,
.page-contact .blog-section--intro {
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.page-afspraak .booking-section--form {
  padding-top: clamp(0.5rem, 1.25vw, 1rem);
}

.page-afspraak .booking-form.form-card,
.page-contact .contact-form.form-card {
  background: var(--brand-cream);
  border: 1px solid rgba(14, 9, 41, 0.06);
  box-shadow: none;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius);
}

.page-contact .contact-layout {
  gap: clamp(1.25rem, 3vw, 2rem);
  max-width: 960px;
  margin-inline: auto;
}

.page-contact .contact-info.service-scenario {
  max-width: none;
  margin-inline: 0;
  align-self: start;
  height: auto;
  padding: clamp(1.25rem, 2.5vw, 1.5rem) clamp(1.35rem, 2.5vw, 1.75rem);
}

.page-contact .contact-info.service-scenario h2 {
  margin-bottom: 0.5rem;
}

.page-contact .contact-info.service-scenario > p:not(.service-scenario__label) {
  color: var(--antraciet);
  margin-bottom: 0;
  line-height: 1.5;
}

.page-contact .contact-details {
  margin-top: 1rem;
}

.page-contact .contact-details dt {
  font-size: 0.875rem;
  margin-top: 0.65rem;
  color: var(--brand-navy);
}

.page-contact .contact-details dt:first-child {
  margin-top: 0;
}

.page-contact .contact-details a {
  color: var(--brand-blue);
  font-weight: 500;
}

.page-contact .contact-details a:hover {
  color: var(--brand-navy);
}

.page-afspraak .booking-panel {
  border: 1px solid rgba(14, 9, 41, 0.06);
  box-shadow: 0 2px 12px rgba(14, 9, 41, 0.04);
}

.page-afspraak .calendar-month-label {
  font-family: "Josefin Sans", system-ui, sans-serif;
  color: var(--brand-navy);
}

.page-afspraak .booking-selected-date-label {
  color: var(--brand-navy);
}

.page-afspraak .calendar-nav {
  background: var(--wit);
  border-color: rgba(14, 9, 41, 0.1);
  color: var(--brand-navy);
}

.page-afspraak .calendar-nav:hover:not(:disabled) {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
  background: var(--brand-lavender);
}

.page-afspraak .calendar-day.is-today:not(.is-selected) {
  border-color: rgba(14, 9, 41, 0.15);
}

.page-afspraak .calendar-day.is-selected {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: var(--wit);
}

.page-afspraak .calendar-day.is-bookable:hover {
  background: var(--brand-lavender);
  border-color: rgba(14, 9, 41, 0.15);
}

.page-afspraak .booking-time-chip {
  background: var(--wit);
  border-color: rgba(14, 9, 41, 0.08);
}

.page-afspraak .booking-time-chip:hover {
  border-color: var(--brand-navy);
  background: var(--brand-lavender);
}

.page-afspraak .booking-time-chip.is-selected {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
  color: var(--wit);
}

.page-afspraak .booking-time-chip.is-unavailable {
  background: #ececf0;
  border-color: rgba(14, 9, 41, 0.08);
  color: #8a8798;
  opacity: 1;
}

.page-afspraak .booking-time-chip.is-unavailable:hover {
  background: #ececf0;
  border-color: rgba(14, 9, 41, 0.08);
}

.page-afspraak .booking-form h2 {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--brand-navy);
}

.page-afspraak .booking-success {
  background: var(--brand-lavender);
  border: 1px solid rgba(143, 160, 213, 0.45);
  box-shadow: 0 2px 12px rgba(14, 9, 41, 0.04);
}

.page-afspraak .booking-success h2 {
  color: var(--brand-navy);
  font-family: "Josefin Sans", system-ui, sans-serif;
}

.page-afspraak .booking-setup-notice {
  background: var(--wit);
  border: 1px solid rgba(14, 9, 41, 0.08);
  box-shadow: 0 2px 12px rgba(14, 9, 41, 0.04);
}

@media (max-width: 768px) {
  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    max-height: 220px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-times-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .booking-times-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.6;
  text-align: center;
}

/* Layout wrapper */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Responsive */
@media (max-width: 1180px) and (min-width: 769px) {
  .logo-mark {
    height: 48px;
  }

  .main-nav a {
    padding: 0.45rem 0.5rem;
    font-size: 0.8125rem;
  }
}

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

  .main-nav {
    flex: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wit);
    border-bottom: 1px solid var(--warm-zand);
    padding: 1rem;
    display: none;
  }

  .main-nav.is-open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .hero-layout,
  .about-layout,
  .contact-layout,
  .service-detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-help-band__list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.5rem 0;
  }

  .service-extras-grid {
    grid-template-columns: 1fr;
  }

  .service-extras-grid .service-help-band__list {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, auto);
  }

  .service-detail-visual {
    position: static;
    max-width: 28rem;
    margin-inline: auto;
  }

  .hero-photo {
    max-width: 320px;
    margin-inline: auto;
    order: -1;
  }

  .hero-banner-visual img {
    max-height: none;
    object-position: center;
  }

  .hero-overlay {
    min-height: auto;
  }

  .hero-overlay-media img {
    object-position: 70% center;
  }

  .hero-overlay-shade {
    background: linear-gradient(
      180deg,
      rgba(14, 9, 41, 0.45) 0%,
      rgba(14, 9, 41, 0.3) 55%,
      rgba(14, 9, 41, 0.15) 100%
    );
  }

  .hero-overlay-content {
    min-height: auto;
    padding: clamp(1.5rem, 6vw, 2.5rem) clamp(1rem, 5vw, 1.5rem);
    padding-left: clamp(1.25rem, 5vw, 2rem);
  }

  .hero-overlay-panel {
    max-width: none;
  }

  .about-profile {
    grid-column: auto;
    grid-row: auto;
    position: static;
    max-width: 320px;
    margin-inline: auto;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .logo-mark {
    height: 44px;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-blog .article-intro-layout {
    grid-template-columns: 1fr;
  }

  .page-blog .article-split-row {
    grid-template-columns: 1fr;
  }

  .page-blog .article-faq .faq-list {
    grid-template-columns: 1fr;
  }

  .page-blog .article-summary {
    margin-top: 0.25rem;
  }

  .topic-card--featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-diensten .topic-card--featured {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "mark body"
      "actions actions";
    text-align: left;
    row-gap: 1rem;
  }

  .page-diensten .topic-card__mark {
    width: clamp(4.5rem, 18vw, 5.5rem);
    margin-inline: 0;
    align-self: start;
  }

  .page-diensten .topic-card__body {
    justify-self: start;
    align-self: center;
    align-items: flex-start;
    text-align: left;
  }

  .page-diensten .topic-card__body .topic-card__title,
  .page-diensten .topic-card__body .topic-card__quote,
  .page-diensten .topic-card__body .topic-card__meta {
    text-align: left;
  }

  .page-diensten .topic-card__actions {
    align-self: start;
    margin-inline: 0;
    width: 100%;
  }

  .topic-card__mark {
    margin-inline: auto;
  }

  .topic-card--featured h3,
  .topic-card__quote {
    text-align: center;
  }

  .topic-card__actions {
    margin-inline: auto;
  }

  .home-blog-grid .blog-card {
    grid-template-columns: 1fr;
  }

  .home-blog-grid .blog-card-image img {
    height: 112px;
  }

  .spoedstart-offer,
  .spoedstart-grid,
  .page-dienst .article-split-row {
    grid-template-columns: 1fr;
  }

  .spoedstart-actions {
    flex-direction: column;
  }

  .spoedstart-actions .btn {
    width: 100%;
    text-align: center;
  }

  .spoedstart-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .spoedstart-banner__mark {
    margin-inline: auto;
  }

  .spoedstart-banner__actions {
    width: 100%;
    min-width: 0;
  }

  .spoedstart-banner__actions .btn {
    width: 100%;
    white-space: normal;
  }
}

/* Homepage — scroll naar volgende blok */
html.page-home {
  --snap-header-offset: 5.25rem;
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--snap-header-offset);
}

.page-home main > section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (prefers-reduced-motion: reduce) {
  html.page-home {
    scroll-snap-type: none;
  }

  .page-home main > section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}

/* Tarieven — scroll per blok */
html.page-tarieven {
  --snap-header-offset: 5.25rem;
  background: var(--wit);
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--snap-header-offset);
}

.page-tarieven main > section {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.page-tarieven main > section.tarieven-snap-section {
  scroll-snap-align: start;
}

.page-tarieven main > section.tarieven-hero {
  min-height: calc(100dvh - var(--snap-header-offset));
  scroll-snap-stop: always;
  justify-content: flex-start;
}

.page-tarieven main > section:not(.tarieven-hero) {
  min-height: auto;
  height: auto;
  scroll-snap-stop: normal;
  justify-content: flex-start;
}

.page-tarieven .tarieven-hero {
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  background: var(--wit);
}

.page-tarieven .tarieven-hero .page-header {
  width: 100%;
}

.page-tarieven .tarieven-hero__body {
  width: 100%;
  flex: 1 1 auto;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.page-tarieven .tarieven-hero__body > .container {
  padding-block: clamp(1rem, 2.5vw, 1.75rem);
}

.page-tarieven .page-header {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  text-align: center;
}

.page-tarieven .page-header p {
  margin-inline: auto;
}

.page-tarieven .tarieven-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.page-tarieven .tarieven-section > .container {
  position: relative;
  z-index: 1;
}

.page-tarieven .tarieven-section--strippenkaart {
  background: var(--brand-lavender);
  border-top: 1px solid rgba(143, 160, 213, 0.28);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}

.page-tarieven .tarieven-section--strippenkaart .tarieven-section-head {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.page-tarieven .tarieven-section--strippenkaart .strippenkaart-grid {
  max-width: 52rem;
  gap: 1rem;
}

.page-tarieven .tarieven-section--strippenkaart .strippenkaart-card {
  background: var(--wit);
  border-color: rgba(14, 9, 41, 0.08);
  box-shadow: 0 4px 18px rgba(14, 9, 41, 0.06);
  padding: 1.15rem 1.1rem;
}

.page-tarieven .tarieven-section--strippenkaart .strippenkaart-card-featured {
  background: var(--brand-cream);
  border-color: rgba(254, 133, 4, 0.35);
  box-shadow: 0 6px 22px rgba(254, 133, 4, 0.12);
}

.page-tarieven .tarieven-section--strippenkaart .strippenkaart-price {
  font-size: 1.35rem;
}

.page-tarieven .tarieven-section--strippenkaart .strippenkaart-note {
  margin-top: 0.85rem;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.page-tarieven .tarieven-section--abonnementen {
  background: var(--wit);
  border-top: 30px solid var(--brand-navy);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: visible;
}

.page-tarieven .tarieven-section--cta {
  background: var(--wit);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.page-tarieven .tarieven-page-cta {
  width: 100%;
  margin-top: 0;
}

.page-tarieven .tarieven-spoedstart {
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: start;
  margin-bottom: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--brand-cream);
  border: 1px solid rgba(14, 9, 41, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-tarieven .tarieven-spoedstart .spoedstart-offer__mark {
  display: block;
  width: clamp(2.75rem, 5vw, 3.5rem);
  height: auto;
  margin-bottom: 0;
  flex-shrink: 0;
}

.page-tarieven .tarieven-spoedstart .spoedstart-offer__heading {
  margin-bottom: 0.65rem;
}

.page-tarieven .tarieven-spoedstart .spoedstart-kicker {
  font-size: 0.8125rem;
  margin-bottom: 0.35rem;
}

.page-tarieven .tarieven-spoedstart .spoedstart-offer__heading h2,
.page-tarieven .tarieven-spoedstart h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  margin-bottom: 0;
}

.page-tarieven .tarieven-spoedstart .spoedstart-tagline {
  font-size: clamp(1.125rem, 2.2vw, 1.35rem);
  margin-bottom: 1rem;
}

.page-tarieven .tarieven-spoedstart .spoedstart-offer__intro p,
.page-tarieven .tarieven-spoedstart .spoedstart-offer__details p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.page-tarieven .tarieven-spoedstart .spoedstart-offer__intro p + p {
  margin-top: 0;
}

.page-tarieven .tarieven-spoedstart .spoedstart-price-note {
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 1rem 1.15rem;
  font-size: 1rem;
}

.page-tarieven .tarieven-spoedstart .spoedstart-offer__details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.page-tarieven .tarieven-spoedstart .spoedstart-includes {
  margin-bottom: 1rem;
}

.page-tarieven .tarieven-spoedstart .spoedstart-includes li {
  margin-bottom: 0.45rem;
  padding-left: 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.page-tarieven .tarieven-spoedstart .spoedstart-includes li::before {
  width: 6px;
  height: 6px;
  top: 0.55em;
}

.page-tarieven .tarieven-spoedstart .spoedstart-closing {
  font-size: 1rem;
  margin-bottom: 0;
}

.page-tarieven .tarieven-spoedstart .spoedstart-actions {
  margin-top: 1rem;
  gap: 0.75rem;
}

.page-tarieven .tarieven-spoedstart .spoedstart-actions .btn {
  padding: 0.75rem 1.35rem;
  font-size: 1rem;
}

.page-tarieven .tarieven-pricing-grid {
  margin-bottom: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

/* Tarieven — section heads & abonnement panels */
.page-tarieven .tarieven-section-head {
  display: grid;
  grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  text-align: left;
  max-width: 52rem;
  margin-inline: auto;
}

.page-tarieven .tarieven-section-head--center {
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.page-tarieven .tarieven-section-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
}

.page-tarieven .tarieven-section-head__text p + p {
  margin-top: 0.75rem;
}

.page-tarieven .tarieven-section-head__single {
  margin: 0;
  color: var(--taupe);
}

.page-tarieven .tarieven-priority-note {
  margin-top: 1rem !important;
  padding: 0.9rem 1rem;
  background: var(--brand-lavender);
  border-radius: var(--radius);
  border-left: 3px solid var(--brand-blue);
  font-size: 0.9375rem;
  color: var(--antraciet);
}

.page-tarieven .abonnementen-stack {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 52rem;
  margin-inline: auto;
  width: 100%;
}

.page-tarieven .abonnement-panel {
  background: var(--wit);
  border: 1px solid rgba(14, 9, 41, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: visible;
}

.page-tarieven .abonnement-panel--featured {
  border-color: rgba(254, 133, 4, 0.35);
  box-shadow: 0 8px 28px rgba(254, 133, 4, 0.1);
}

.page-tarieven .abonnement-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: linear-gradient(135deg, var(--brand-cream) 0%, rgba(233, 238, 255, 0.65) 100%);
  border-bottom: 1px solid rgba(14, 9, 41, 0.08);
}

.page-tarieven .abonnement-panel--featured .abonnement-panel__header {
  border-bottom-color: rgba(254, 133, 4, 0.18);
}

.page-tarieven .abonnement-panel__intro h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

.page-tarieven .abonnement-panel__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--taupe);
  max-width: 36rem;
}

.page-tarieven .abonnement-panel__price {
  text-align: left;
  min-width: min(100%, 14rem);
}

.page-tarieven .abonnement-panel__price-main {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--antraciet);
  line-height: 1.45;
}

.page-tarieven .abonnement-panel__price-main strong {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 600;
  color: var(--brand-navy);
}

.page-tarieven .abonnement-panel__price-addon {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--taupe);
}

.page-tarieven .abonnement-panel__price-addon strong {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-weight: 600;
  color: var(--brand-navy);
}

.page-tarieven .abonnement-panel__body {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.page-tarieven .abonnement-panel__summary {
  margin: 0 0 1.25rem;
  max-width: 52rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.page-tarieven .abonnement-panel__columns--single .abonnement-panel__column ul {
  column-count: 2;
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.page-tarieven .abonnement-panel__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(14, 9, 41, 0.08);
}

.page-tarieven .abonnement-panel__columns--single {
  grid-template-columns: 1fr;
}

.page-tarieven .abonnement-panel__column h4 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.page-tarieven .abonnement-panel__column ul {
  list-style: none;
  margin: 0;
}

.page-tarieven .abonnement-panel__column li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--antraciet);
  break-inside: avoid;
}

.page-tarieven .abonnement-panel__column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--brand-orange);
  border-radius: 50%;
}

.page-tarieven .abonnement-panel__footnote {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  background: var(--brand-lavender);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--antraciet);
}

.page-tarieven .abonnement-actions {
  margin-top: 1.5rem;
  align-items: center;
  gap: 0.75rem;
}

.page-tarieven .abonnement-info {
  position: relative;
  display: inline-flex;
}

.page-tarieven .abonnement-info__trigger {
  margin-top: 0;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  font-size: 0.875rem;
  padding: 0.65rem 0.9rem;
}

.page-tarieven .abonnement-info__popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.65rem);
  z-index: 20;
  width: min(22.5rem, calc(100vw - 2.5rem));
  padding: 1.1rem 1.2rem;
  background: var(--wit);
  border: 1px solid rgba(14, 9, 41, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(14, 9, 41, 0.12);
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.page-tarieven .abonnement-info__popover::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 1.25rem;
  width: 0.75rem;
  height: 0.75rem;
}

.page-tarieven .abonnement-info__title {
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.page-tarieven .abonnement-info__popover p {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--antraciet);
}

.page-tarieven .abonnement-info__popover p:last-child {
  margin-bottom: 0;
}

.page-tarieven .abonnement-info:hover .abonnement-info__popover,
.page-tarieven .abonnement-info:focus-within .abonnement-info__popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .page-tarieven .abonnement-info__popover {
    right: auto;
    left: 0;
    bottom: auto;
    top: calc(100% + 0.65rem);
    width: min(22.5rem, calc(100vw - 2.5rem));
    transform: translateY(-0.35rem);
  }

  .page-tarieven .abonnement-info:hover .abonnement-info__popover,
  .page-tarieven .abonnement-info:focus-within .abonnement-info__popover {
    transform: translateY(0);
  }

  .page-tarieven .abonnement-info__popover::after {
    top: auto;
    bottom: 100%;
    right: auto;
    left: 1.25rem;
  }
}

@media (max-width: 900px) {
  .page-tarieven .tarieven-section-head {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .page-tarieven .abonnement-panel__header {
    grid-template-columns: 1fr;
  }

  .page-tarieven .abonnement-panel__price {
    min-width: 0;
  }

  .page-tarieven .abonnement-panel__columns {
    grid-template-columns: 1fr;
  }

  .page-tarieven .abonnement-panel__columns--single .abonnement-panel__column ul {
    column-count: 1;
  }
}

.page-tarieven .tarieven-extra-title {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin-bottom: 1rem;
  text-align: left;
}

.page-tarieven .cta-band {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.page-tarieven .cta-band h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.page-tarieven .cta-band p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 32rem;
}

.page-tarieven .cta-band .btn-primary {
  margin-top: 1.25rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .page-tarieven .tarieven-spoedstart {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.page-tarieven {
    scroll-snap-type: none;
  }

  .page-tarieven main > section.tarieven-snap-section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .page-tarieven main > section {
    min-height: 0;
    display: block;
  }
}
