/* ============================================
   Studio Spreekwoord -- Starter Preview
   Archetype: bold-statement
   Fonts: Staatliches (headings) + Lato (body)
   Mobile-first CSS
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #FEFAF6;
}

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

a {
  color: #017589;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #015a6a;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  color: #1A1A2E;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 28px;
  line-height: 1.15;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

h4 {
  font-size: 18px;
  line-height: 1.3;
}

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

.spreekwoord-quote {
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: #1A1A2E;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container--narrow {
  max-width: 680px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  padding: 16px 32px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  min-height: 44px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn:focus-visible {
  outline: 3px solid #017589;
  outline-offset: 2px;
}

.btn--primary {
  background-color: #E87A3A;
  color: #FFFFFF;
}

.btn--primary:hover {
  background-color: #D4702F;
  color: #FFFFFF;
}

.btn--primary:active {
  transform: scale(0.97);
}

.btn--secondary {
  background-color: transparent;
  border: 2px solid #017589;
  color: #017589;
  padding: 14px 30px;
}

.btn--secondary:hover {
  background-color: #017589;
  color: #FFFFFF;
}

.btn--secondary:active {
  transform: scale(0.97);
}

/* On dark backgrounds */
.btn--secondary-light {
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 14px 30px;
}

.btn--secondary-light:hover {
  background-color: #FFFFFF;
  color: #013440;
}

.btn--secondary-light:active {
  transform: scale(0.97);
}

.btn--full-mobile {
  width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
  background-color: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header__logo img {
  max-height: 40px;
  width: auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
}

/* Desktop nav hidden on mobile */
.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__link {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: #E87A3A;
}

.site-nav__cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1A1A2E;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -85vw;
  width: 85vw;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 200;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}

.mobile-menu--open {
  right: 0;
}

.mobile-menu__header {
  display: flex;
  justify-content: flex-end;
  padding: 6px 12px;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #1A1A2E;
}

.mobile-menu__list {
  flex: 1;
}

.mobile-menu__link {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  padding: 16px 24px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: #E87A3A;
}

.mobile-menu__cta {
  display: block;
  margin: 8px 24px;
  text-align: center;
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #017589;
  text-decoration: none;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.mobile-menu__phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 40px 20px 60px;
  overflow: hidden;
  background-color: #013440;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero__title {
  font-size: 40px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__actions .btn {
  width: 100%;
}

.hero__actions .btn:focus-visible {
  outline-color: #FFFFFF;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 48px 20px 40px;
  background-color: #FEFAF6;
}

.page-hero--image {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #013440;
}

.page-hero--image .hero__bg,
.page-hero--image .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-hero--image .hero__bg {
  object-fit: cover;
  z-index: 1;
}

.page-hero--image .hero__overlay {
  z-index: 2;
}

.page-hero--image .page-hero__content {
  position: relative;
  z-index: 3;
}

.page-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-hero__title {
  font-size: 36px;
  color: #1A1A2E;
  margin-bottom: 12px;
}

.page-hero--image .page-hero__title {
  color: #FFFFFF;
}

.page-hero__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  max-width: 600px;
}

.page-hero--image .page-hero__subtitle {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 64px 20px;
}

.section--accent {
  background-color: #FFF3E6;
}

.section--dark {
  background-color: #013440;
  color: rgba(255,255,255,0.85);
}

.section--dark h2,
.section--dark h3 {
  color: #FFFFFF;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  margin-bottom: 40px;
}

.section__title {
  margin-bottom: 12px;
}

.section__subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
}

/* ============================================
   SPREEKWOORD QUOTE
   ============================================ */
.quote-section {
  padding: 80px 20px;
  background-color: #FFF3E6;
  text-align: center;
}

.quote-section--dark {
  background-color: #013440;
}

.quote-section__text {
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  color: #1A1A2E;
  max-width: 800px;
  margin: 0 auto 16px;
}

.quote-section--dark .quote-section__text {
  color: #FFFFFF;
}

.quote-section__attribution {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
}

.quote-section--dark .quote-section__attribution {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   WAT WIJ DOEN -- Asymmetric block (Pixel spec)
   ============================================ */
.wwd {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwd__main {
  position: relative;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.wwd__main-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.wwd__main-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 70%);
  z-index: 2;
}

.wwd__main-content {
  position: relative;
  z-index: 3;
}

.wwd__main h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.wwd__main p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  margin-bottom: 12px;
}

.wwd__main a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wwd__main a:hover {
  color: #FFF3E6;
}

.wwd__secondary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wwd__card {
  padding: 24px;
  border-radius: 8px;
}

.wwd__card--teal {
  background-color: #017589;
  color: #FFFFFF;
}

.wwd__card--teal h3 {
  color: #FFFFFF;
}

.wwd__card--teal a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wwd__card--accent {
  background-color: #FEFAF6;
  border-left: 4px solid #E87A3A;
}

.wwd__card--accent h3 {
  color: #1A1A2E;
}

.wwd__card--accent a {
  color: #E87A3A;
  font-weight: 600;
}

.wwd__card h3 {
  margin-bottom: 8px;
}

.wwd__card p {
  font-size: 15px;
  margin-bottom: 12px;
}

/* ============================================
   SOCIAL PROOF (Pixel spec: asymmetric, no logo strip)
   ============================================ */
.social-proof {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial__star {
  width: 20px;
  height: 20px;
  fill: #E87A3A;
}

.testimonial__quote {
  font-family: 'Staatliches', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #1A1A2E;
  margin-bottom: 16px;
}

.testimonial__author {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #6B7280;
}

.partners__count {
  font-family: 'Staatliches', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #1A1A2E;
  margin-bottom: 8px;
}

.partners__label {
  font-family: 'Staatliches', sans-serif;
  font-size: 22px;
  color: #1A1A2E;
  margin-bottom: 12px;
}

.partners__names {
  font-size: 15px;
  color: #6B7280;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 48px 20px;
  background-color: #013440;
  text-align: center;
}

.cta-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: 'Staatliches', sans-serif;
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.cta-banner__columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-banner__col {
  padding: 24px;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.08);
}

.cta-banner__col h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.cta-banner__col p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 16px;
}

/* ============================================
   ROUTE CARDS
   ============================================ */
.route-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.route-card {
  display: block;
  text-decoration: none;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  padding-left: 24px;
  border-left: 4px solid #E87A3A;
  min-height: 80px;
  transition: background-color 0.2s ease, border-left-width 0.2s ease;
}

.route-card:hover {
  background-color: #FFF3E6;
  border-left-width: 6px;
}

.route-card:focus-visible {
  outline: 2px solid #017589;
  outline-offset: 2px;
}

.route-card--volwassenen {
  border-left-color: #017589;
}

.route-card--kinderen {
  border-left-color: #4EADC5;
}

.route-card__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 3px;
  color: #FFFFFF;
  line-height: 1.4;
}

.badge--gezinnen {
  background-color: #E87A3A;
}

.badge--volwassenen {
  background-color: #017589;
}

.badge--kinderen {
  background-color: #4EADC5;
}

.badge--binnenkort {
  background-color: #6B7280;
}

.route-card__title {
  font-size: 20px;
  color: #1A1A2E;
  margin-bottom: 4px;
}

.route-card__location {
  font-size: 14px;
  color: #6B7280;
}

/* ============================================
   STEPS (How it works)
   ============================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  counter-reset: step;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  counter-increment: step;
}

.step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #E87A3A;
  color: #FFFFFF;
  font-family: 'Staatliches', sans-serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step__content h3 {
  margin-bottom: 4px;
}

.step__content p {
  font-size: 15px;
  color: #6B7280;
}

/* ============================================
   DOELGROEP CARDS (Samenwerken)
   ============================================ */
.doelgroep-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.doelgroep-card {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  border-top: 3px solid #E87A3A;
}

.doelgroep-card:nth-child(2) {
  border-top-color: #017589;
}

.doelgroep-card:nth-child(3) {
  border-top-color: #4EADC5;
}

.doelgroep-card:nth-child(4) {
  border-top-color: #013440;
}

.doelgroep-card h3 {
  margin-bottom: 8px;
}

.doelgroep-card p {
  font-size: 15px;
  color: #6B7280;
}

/* ============================================
   USP BLOCK
   ============================================ */
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.usp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.usp-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #017589;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-item__icon svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

.usp-item h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.usp-item p {
  font-size: 15px;
  color: #6B7280;
}

/* ============================================
   TEAM (Over Ons)
   ============================================ */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.team-member {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.team-member__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #017589;
  color: #FFFFFF;
  font-family: 'Staatliches', sans-serif;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member__info h3 {
  margin-bottom: 2px;
}

.team-member__role {
  font-size: 14px;
  color: #E87A3A;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-member__bio {
  font-size: 15px;
  color: #6B7280;
}

/* ============================================
   STATS (Over Ons)
   ============================================ */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px 16px;
}

.stat__number {
  font-family: 'Staatliches', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: #E87A3A;
  margin-bottom: 8px;
}

.stat__label {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #6B7280;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1A1A2E;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #333333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #017589;
  box-shadow: 0 0 0 3px rgba(1,117,137,0.15);
  outline: none;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn {
  width: 100%;
}

/* Contact info sidebar */
.contact-info {
  width: 100%;
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
}

.contact-info__item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: #017589;
  margin-top: 2px;
}

.contact-info__item a {
  color: #017589;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.contact-info__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.contact-info__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #017589;
  color: #FFFFFF;
  transition: background-color 0.2s ease;
}

.contact-info__social a:hover {
  background-color: #015a6a;
}

.contact-info__social svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: #013440;
  color: rgba(255,255,255,0.85);
  padding: 64px 20px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__columns {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-col__logo {
  max-height: 40px;
  width: auto;
  filter: brightness(1.2);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.footer-col__social {
  display: flex;
  gap: 16px;
}

.footer-col__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer-col__social a:hover {
  color: #FFFFFF;
}

.footer-col__social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-col ul a:hover {
  color: #FFFFFF;
}

.footer-col address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
}

.footer-col address a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col address a:hover {
  color: #FFFFFF;
}

.site-footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.site-footer__copyright {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: #E87A3A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}

.sticky-cta__text {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
}

.sticky-cta:active {
  background-color: #D4702F;
  transform: scale(0.98);
}

.sticky-cta:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: -2px;
}

/* Add bottom padding to body for sticky CTA */
body {
  padding-bottom: 56px;
}

/* Hide on contact page (added via class) */
.page-contact .sticky-cta {
  display: none;
}

.page-contact body,
.page-contact {
  padding-bottom: 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 12px 20px;
  font-size: 13px;
  color: #6B7280;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb a {
  color: #017589;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 6px;
  color: #D1D5DB;
}

/* ============================================
   TABLET BREAKPOINT (481px+)
   ============================================ */
@media (min-width: 481px) {
  .section {
    padding: 64px 40px;
  }

  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-hero {
    padding: 56px 40px 48px;
  }

  .hero {
    padding: 40px 40px 60px;
  }

  .wwd__secondary {
    flex-direction: row;
  }

  .wwd__card {
    flex: 1;
  }

  .doelgroep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-col--nav-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .site-footer__columns {
    gap: 32px;
  }

  .quote-section {
    padding: 96px 40px;
  }

  .quote-section__text {
    font-size: 40px;
  }

  .cta-banner {
    padding: 56px 40px;
  }

  .breadcrumb {
    padding: 12px 40px;
  }

  .stats-grid {
    flex-wrap: nowrap;
  }
}

/* ============================================
   TABLET LANDSCAPE / DESKTOP NAV (769px+)
   ============================================ */
@media (min-width: 769px) {
  .site-header {
    height: 72px;
  }

  .site-header--scrolled {
    height: 56px;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .site-nav__cta {
    display: inline-block;
  }

  .hamburger {
    display: none;
  }

  .hero__title {
    font-size: 56px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__actions {
    flex-direction: row;
  }

  .hero__actions .btn {
    width: auto;
  }

  .page-hero__title {
    font-size: 48px;
  }

  .page-hero__subtitle {
    font-size: 18px;
  }

  h2 {
    font-size: 36px;
  }

  .testimonial__quote {
    font-size: 28px;
  }

  .social-proof {
    flex-direction: row;
    align-items: flex-start;
  }

  .social-proof__testimonial {
    flex: 3;
  }

  .social-proof__partners {
    flex: 2;
  }

  .cta-banner__columns {
    flex-direction: row;
  }

  .cta-banner__col {
    flex: 1;
  }

  .steps {
    flex-direction: row;
    gap: 40px;
  }

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

  .contact-layout {
    flex-direction: row;
    gap: 48px;
  }

  .contact-form {
    flex: 3;
  }

  .contact-info {
    flex: 2;
  }

  .contact-form .btn {
    width: auto;
  }

  .team-grid {
    flex-direction: row;
    gap: 40px;
  }

  .team-member {
    flex: 1;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .team-member__avatar {
    width: 100px;
    height: 100px;
    font-size: 36px;
  }

  .usp-list {
    flex-direction: row;
    gap: 32px;
  }

  .usp-item {
    flex: 1;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Sticky CTA hidden on desktop */
  .sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .site-footer {
    padding: 80px 40px;
  }

  .site-footer__columns {
    flex-direction: row;
    gap: 48px;
  }

  .footer-col--about {
    flex: 2;
  }

  .footer-col--nav,
  .footer-col--contact {
    flex: 1;
  }

  .footer-col--nav-contact {
    display: contents;
  }
}

/* ============================================
   DESKTOP (1025px+)
   ============================================ */
@media (min-width: 1025px) {
  .hero__title {
    font-size: 72px;
  }

  .page-hero__title {
    font-size: 56px;
  }

  h2 {
    font-size: 44px;
  }

  h3 {
    font-size: 28px;
  }

  body {
    font-size: 18px;
  }

  .btn {
    font-size: 18px;
    padding: 18px 40px;
  }

  .btn--secondary {
    padding: 16px 38px;
  }

  .wwd {
    flex-direction: row;
    gap: 20px;
  }

  .wwd__main {
    flex: 1;
    min-height: 380px;
  }

  .wwd__secondary {
    flex-direction: column;
    width: 50%;
  }

  .wwd__card {
    flex: 1;
  }

  .section {
    padding: 96px 40px;
  }

  .quote-section {
    padding: 120px 40px;
  }

  .quote-section__text {
    font-size: 56px;
  }

  .cta-banner {
    padding: 80px 40px;
  }

  .cta-banner__title {
    font-size: 36px;
  }

  .site-footer {
    padding: 80px 40px;
  }

  .testimonial__quote {
    font-size: 32px;
  }

  .partners__count {
    font-size: 56px;
  }

  .route-card {
    padding: 24px;
    padding-left: 28px;
  }

  .page-hero--image {
    min-height: 45vh;
  }
}
