  :root {
    --navy: #0D1B2A;
    --deepblue: #1B3A57;
    --mint: #5DCAA5;
    --mint-dark: #3aab87;
    --white: #F4F4F0;
    --gray: #8a9ab0;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { overflow-x: clip; max-width: 100%; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--navy); overflow-x: clip; }

  /* NAVBAR */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.4rem 5%; display: flex; align-items: center; justify-content: space-between;
    background: rgba(13,27,42,0.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; line-height: 0; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-toggle { display: none; }
  .nav-links a { color: rgba(244,244,240,0.7); text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--mint); }
  .nav-cta {
    background: var(--mint); color: var(--navy) !important; padding: 0.55rem 1.4rem;
    border-radius: 50px; font-weight: 500 !important; transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { background: var(--mint-dark) !important; transform: translateY(-1px); }

  .werk-hero {
    min-height: 67vh; background: var(--navy);
    display: flex; flex-direction: column; justify-content: center;
    padding: 9rem 5% 4rem; position: relative; overflow: hidden;
  }
  .hero-bg-shape { position: absolute; border-radius: 50%; opacity: 0.06; background: var(--mint); pointer-events: none; }
  .hero-bg-shape.s1 { width: 600px; height: 600px; top: -200px; right: -100px; }
  .hero-bg-shape.s2 { width: 300px; height: 300px; bottom: -50px; left: -80px; }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(93,202,165,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(93,202,165,0.04) 1px, transparent 1px);
    background-size: 60px 60px; pointer-events: none;
  }
  .section-label { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--mint); margin-bottom: 1rem; }
  .werk-hero .section-label { animation: fadeUp 0.7s ease 0.2s both; }
  .werk-title {
    font-family: 'Helvetica Now Display','Helvetica Neue','Helvetica',Arial,sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800;
    color: var(--white); line-height: 1.05; letter-spacing: -2px; max-width: 700px;
    animation: fadeUp 0.7s ease 0.35s both;
  }
  .werk-title .accent { color: var(--mint); }
  .werk-sub {
    font-size: 1.05rem; color: rgba(244,244,240,0.55); margin-top: 1.5rem;
    max-width: 460px; line-height: 1.7; font-weight: 300;
    animation: fadeUp 0.7s ease 0.5s both;
  }

  .werk-section { padding: 6rem 5%; background: var(--white); }
  .werk-intro {
    max-width: 760px;
    margin-bottom: 2.5rem;
  }
  .werk-intro h2 {
    font-family: 'Helvetica Now Display','Helvetica Neue','Helvetica',Arial,sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1rem;
  }
  .werk-intro p:not(.section-label) {
    color: rgba(13,27,42,0.62);
    line-height: 1.7;
    max-width: 650px;
  }
  /* Segmented control - identiek aan de diensten-tabs (.dienst-tabs) */
  .werk-tabs {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 2.5rem;
    padding: 0.4rem;
    background: #eef0eb;
    border: 1px solid rgba(13,27,42,0.08);
    border-radius: 50px;
  }
  .werk-tab {
    appearance: none;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    color: var(--navy);
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  .werk-tab:hover { background: var(--white); box-shadow: 0 2px 8px rgba(13,27,42,0.08); }
  .werk-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: 0 6px 16px rgba(13,27,42,0.18); }
  .portfolio-card[hidden] { display: none; }
  .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 2rem; margin-top: 1rem; }
  .portfolio-card {
    background: var(--navy); border-radius: 24px; overflow: hidden;
    display: flex; flex-direction: column; border: 1.5px solid rgba(93,202,165,0.1);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  }
  .portfolio-card:hover { transform: translateY(-8px); border-color: var(--mint); box-shadow: 0 24px 60px rgba(13,27,42,0.25); }
  .card-img-wrap { position: relative; overflow: hidden; height: 180px; background: #eef0eb; }
  .card-img { width: 100%; height: 100%; object-fit: contain; object-position: center top; display: block; transition: transform 0.4s ease; }
  .portfolio-card:hover .card-img { transform: scale(1.04); }
  .card-img-logo-wrap { width: 100%; height: 230px; background: #111; display: flex; align-items: center; justify-content: center; }
  .card-img-logo-wrap img { max-width: 150px; max-height: 150px; object-fit: contain; }
  .card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
  .card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
  .card-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; flex-shrink: 0; padding: 3px; }
  .card-logo-light { background: #fff; }
  .card-logo-dark { background: #111; }
  .card-title {
    font-family: 'Helvetica Now Display','Helvetica Neue','Helvetica',Arial,sans-serif;
    font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: -0.3px;
  }
  .card-location { font-size: 0.75rem; color: var(--gray); margin-top: 2px; }
  .card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1rem; }
  .tag { font-size: 0.7rem; font-weight: 500; padding: 4px 12px; border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase; }
  .tag-green { background: rgba(93,202,165,0.12); color: var(--mint); border: 1px solid rgba(93,202,165,0.25); }
  .tag-blue { background: rgba(27,58,87,0.8); color: #7ab8e8; border: 1px solid rgba(122,184,232,0.2); }
  .tag-purple { background: rgba(167,139,250,0.12); color: #b9a3fb; border: 1px solid rgba(167,139,250,0.25); }
  .tag-content { background: rgba(244,244,240,0.08); color: rgba(244,244,240,0.78); border: 1px solid rgba(244,244,240,0.18); }
  .card-desc { font-size: 0.9rem; color: rgba(244,244,240,0.55); line-height: 1.75; flex: 1; margin-bottom: 1.5rem; font-weight: 300; }
  .card-desc strong { color: rgba(244,244,240,0.8); font-weight: 500; }
  .card-cta {
    display: inline-flex; align-items: center; gap: 8px; background: var(--mint); color: var(--navy);
    font-size: 0.88rem; font-weight: 500; padding: 0.75rem 1.5rem; border-radius: 50px;
    text-decoration: none; width: fit-content; transition: background 0.2s, transform 0.2s;
  }
  .card-cta:hover { background: var(--mint-dark); transform: translateY(-1px); }
  .card-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
  .card-cta-blog {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: 1.5px solid rgba(93,202,165,0.4); color: var(--mint);
    font-size: 0.88rem; font-weight: 500; padding: 0.75rem 1.4rem; border-radius: 50px;
    text-decoration: none; width: fit-content; transition: background 0.2s, border-color 0.2s;
  }
  .card-cta-blog:hover { background: rgba(93,202,165,0.12); border-color: var(--mint); }
  .empty-state {
    text-align: center; padding: 3rem 1rem; color: rgba(13,27,42,0.4);
    border: 1.5px dashed rgba(13,27,42,0.15); border-radius: 20px; grid-column: 1 / -1;
  }

  .werk-cta { padding: 6rem 5%; background: var(--navy); text-align: center; position: relative; overflow: hidden; }
  .werk-cta .hero-bg-shape.s1 { width: 500px; height: 500px; top: -200px; left: 50%; transform: translateX(-50%); opacity: 0.05; }
  .werk-cta-inner { position: relative; z-index: 1; }
  .werk-cta h2 {
    font-family: 'Helvetica Now Display','Helvetica Neue','Helvetica',Arial,sans-serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 1rem;
  }
  .werk-cta h2 span { color: var(--mint); }
  .werk-cta p { color: rgba(244,244,240,0.55); font-size: 1rem; font-weight: 300; margin-bottom: 2rem; }
  .btn-primary {
    background: var(--mint); color: var(--navy); padding: 0.85rem 2rem; border-radius: 50px;
    font-weight: 500; font-size: 1rem; text-decoration: none; transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--mint-dark); transform: translateY(-2px); }

  footer {
    background: var(--navy); padding: 3rem 5%; display: flex; flex-wrap: wrap; gap: 2rem;
    align-items: center; justify-content: space-between; border-top: 1px solid rgba(93,202,165,0.1);
  }
  .footer-logo { text-decoration: none; }
  .footer-tagline { font-size: 0.8rem; color: rgba(244,244,240,0.3); margin-top: 0.5rem; }
  .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
  .footer-links a { color: rgba(244,244,240,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--mint); }
  .footer-socials { display: flex; gap: 0.8rem; }
  .social-btn {
    width: 38px; height: 38px; border: 1px solid rgba(93,202,165,0.25); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s;
  }
  .social-btn svg { width: 16px; height: 16px; }
  .social-btn:hover { border-color: var(--mint); background: rgba(93,202,165,0.1); }
  .footer-copy { font-size: 0.78rem; color: rgba(244,244,240,0.2); }
  .footer-bottom-row {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
  .footer-legal a { font-size: 0.78rem; color: rgba(244,244,240,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--mint); }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

  @media (max-width: 768px) {
    .nav-toggle {
      display: flex; flex-direction: column; justify-content: center; gap: 5px;
      width: 44px; height: 44px; padding: 9px;
      background: none; border: 0; cursor: pointer; z-index: 120;
    }
    .nav-toggle span {
      display: block; height: 2px; width: 100%; border-radius: 2px;
      background: var(--white);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    /* Dimmed backdrop; identiek aan diensten/blog (base.css) */
    nav.nav-open::before {
      content: '';
      position: fixed; inset: 0;
      background: rgba(5,10,16,0.55);
      -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
      z-index: 105;
    }
    .nav-links {
      display: flex;
      position: fixed; top: 0; right: 0;
      flex-direction: column; align-items: stretch;
      width: min(84vw, 320px);
      height: 100vh; height: 100dvh;
      padding: 5.25rem 1.4rem 1.75rem; gap: 0;
      overflow-y: auto;
      background: #0a141f;
      -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
      box-shadow: -14px 0 44px rgba(0,0,0,0.4);
      border-left: 1px solid rgba(93,202,165,0.14);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 110;
    }
    nav.nav-open .nav-links { transform: translateX(0); }
    .nav-links li { width: 100%; list-style: none; }
    .nav-links a:not(.nav-cta) {
      display: block; width: 100%;
      padding: 0.9rem 0.25rem;
      font-size: 1.02rem; font-weight: 500;
      color: rgba(244,244,240,0.92);
      border-bottom: 1px solid rgba(244,244,240,0.08);
      transition: color 0.2s;
    }
    .nav-links a:not(.nav-cta):hover,
    .nav-links a:not(.nav-cta).active { color: var(--mint); }
    .nav-links .nav-cta {
      display: block; width: 100%; text-align: center;
      margin-top: 1.5rem; padding: 0.95rem 1.2rem;
      font-size: 1rem; font-weight: 600; border-radius: 50px;
    }
    nav .nav-toggle { z-index: 120; }
    .werk-tabs {
      width: 100%;
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      border-radius: 14px;
      scrollbar-width: none;
    }
    .werk-tabs::-webkit-scrollbar { display: none; }
    .werk-tab {
      flex: 0 0 auto;
      white-space: nowrap;
      padding: 0.62rem 0.9rem;
      font-size: 0.84rem;
    }
    footer { flex-direction: column; text-align: center; }
  }

/* -- Large-screen content cap (>=1500px) -- */
@media (min-width: 1500px) {
  nav, .werk-hero, .werk-section, .werk-cta, footer {
    padding-inline: max(5%, calc((100% - 1400px) / 2));
  }
}


/* -------------------------------------------------------------
   CANONICAL SITE FOOTER - identical & high-contrast on every page
   (uses footer.site-footer specificity to override older rules)
   ------------------------------------------------------------- */
footer.site-footer {
  background: #0a141f;
  color: rgba(244,244,240,0.62);
  border-top: 1px solid rgba(93,202,165,0.18);
  padding: 3.5rem 5% 1.75rem;
  display: block;
  text-align: left;
}
footer.site-footer .footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
}
footer.site-footer .footer-brand { max-width: 340px; }
footer.site-footer .footer-logo { display: inline-flex; line-height: 0; margin-bottom: 1rem; text-decoration: none; }
footer.site-footer .footer-tagline {
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
}
footer.site-footer .footer-about {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(244,244,240,0.55);
  margin: 0 0 1.25rem;
}
footer.site-footer .footer-col { min-width: 0; }
footer.site-footer .footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244,244,240,0.92);
  margin: 0 0 1rem;
  font-weight: 600;
}
footer.site-footer .footer-contact { display: block; }
footer.site-footer .footer-col a,
footer.site-footer .footer-contact a,
footer.site-footer .footer-contact span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(244,244,240,0.62);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
footer.site-footer .footer-col a:hover,
footer.site-footer .footer-contact a:hover { color: var(--mint); }
footer.site-footer .footer-kvk { color: rgba(244,244,240,0.42); font-size: 0.82rem; }
footer.site-footer .footer-socials { display: flex; gap: 0.7rem; margin-top: 0.25rem; }
footer.site-footer .social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(93,202,165,0.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
footer.site-footer .social-btn:hover { border-color: var(--mint); background: rgba(93,202,165,0.12); transform: translateY(-2px); }
footer.site-footer .social-btn svg { width: 18px; height: 18px; }
footer.site-footer .footer-regio-row {
  max-width: 1240px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244,244,240,0.08);
  font-size: 0.82rem;
  color: rgba(244,244,240,0.45);
}
footer.site-footer .footer-regio-row a { color: rgba(244,244,240,0.62); text-decoration: none; }
footer.site-footer .footer-regio-row a:hover { color: var(--mint); }
footer.site-footer .footer-bottom-row {
  max-width: 1240px;
  margin: 1.25rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-top: 0;
  padding-top: 0;
}
footer.site-footer .footer-copy { font-size: 0.8rem; color: rgba(244,244,240,0.4); }
footer.site-footer .footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer.site-footer .footer-legal a { font-size: 0.8rem; color: rgba(244,244,240,0.48); text-decoration: none; transition: color 0.2s; }
footer.site-footer .footer-legal a:hover { color: var(--mint); }

@media (max-width: 900px) {
  footer.site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  footer.site-footer .footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 560px) {
  footer.site-footer { padding: 2.5rem 1.4rem 1.5rem; text-align: left; }
  footer.site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.25rem; }
  footer.site-footer .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  footer.site-footer .footer-legal { gap: 1rem 1.25rem; }
  footer.site-footer .footer-regio-row { text-align: left; }
}

/* Audit 2.0 refinements: compact mobile nav and readable footer */
@media (max-width: 768px) {
  nav { padding: 0.85rem 1rem; }
  nav .nav-links {
    width: min(78vw, 290px) !important;
    padding: 4.7rem 1.1rem 1.25rem !important;
  }
  nav .nav-links a:not(.nav-cta) {
    padding: 0.68rem 0.2rem !important;
    font-size: 0.96rem !important;
    line-height: 1.2 !important;
  }
  nav .nav-links .nav-cta {
    margin-top: 0.95rem !important;
    padding: 0.78rem 1rem !important;
    font-size: 0.95rem !important;
  }
}
@media (max-width: 560px) {
  footer.site-footer { padding: 2.35rem 1.15rem 1.4rem !important; }
  /* Twee kolommen i.p.v. alles onder elkaar -> footer ~40% korter op telefoon */
  footer.site-footer .footer-top { grid-template-columns: 1fr 1fr !important; gap: 1.5rem 1.25rem !important; }
  footer.site-footer .footer-brand { max-width: none !important; }
  footer.site-footer .footer-about { display: none; }
  footer.site-footer .footer-col h4 { margin-bottom: 0.6rem; }
  footer.site-footer .footer-col a,
  footer.site-footer .footer-contact a,
  footer.site-footer .footer-contact span { min-height: 30px; margin-bottom: 0.2rem !important; font-size: 0.86rem; }
  footer.site-footer .footer-regio-row { margin-top: 1.5rem !important; padding-top: 1rem; }
  footer.site-footer .footer-bottom-row { margin-top: 1rem; }
  footer.site-footer .footer-legal { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.1rem !important; }
  footer.site-footer .footer-legal a { min-height: 30px; }
}

/* werk-hero (gelijk aan index) */
.werk-hero {
  min-height: 67vh;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.werk-title {
  font-size: clamp(2.15rem, 4.5vw, 3.7rem);
  max-width: 620px;
  letter-spacing: -1.2px;
}
.werk-sub {
  margin-top: 1rem;
  max-width: 520px;
}
@media (max-width: 768px) {
  .werk-hero { min-height: auto; padding-top: 6.6rem; padding-bottom: 2.8rem; }
  .werk-title { font-size: clamp(2rem, 10vw, 3rem); }
}

/* ===== OPRICHTERS / VERTROUWEN (site-breed) ===== */
.dd-founders {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 5%;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  border-top: 1px solid rgba(13,27,42,0.08);
}
.dd-founders-photos { display: flex; flex-shrink: 0; }
.dd-founders-photos img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 3px solid var(--white);
  box-shadow: 0 10px 26px rgba(13,27,42,0.16);
}
.dd-founders-photos img:last-child { margin-left: -26px; }
.dd-founders-label {
  font-size: 0.76rem;
  color: var(--mint-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.dd-founders-text h3 {
  font-family: "Helvetica Now Display", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.dd-founders-text p {
  color: rgba(13,27,42,0.6);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}
.dd-founders-text a {
  display: inline-block;
  background: var(--mint);
  color: var(--navy);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.dd-founders-text a:hover { background: var(--mint-dark); transform: translateY(-2px); }
@media (max-width: 640px) {
  .dd-founders { flex-direction: column; text-align: center; gap: 1.4rem; padding: 2.8rem 5%; }
  .dd-founders-photos { justify-content: center; }
}


/* ===== HERO FOTOCLUSTER + GOOGLE REVIEWS (site-breed) ===== */
.hero-photos {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  animation: heroPhotosIn 0.9s ease 0.7s both;
}
@keyframes heroPhotosIn { from { opacity: 0; } to { opacity: 1; } }
.hero-photos-stack { display: flex; align-items: flex-end; }
.hero-photos img {
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
}
.hero-photos .hp-back {
  width: 156px;
  margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  filter: saturate(0.95);
}
.hero-photos .hp-front {
  width: 176px;
  margin-left: -34px;
  position: relative;
  z-index: 2;
  outline: 4px solid var(--navy);
  outline-offset: 0;
}
.hero-photos-badge {
  position: absolute;
  left: -18px;
  bottom: -14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.32);
  white-space: nowrap;
}
.hero-photos-badge strong { font-weight: 700; }
/* Tablet/mobiel: foto zweeft klein rechtsboven en de tekst loopt eromheen
   (zelfde behandeling als de homepage-hero op telefoon). Desktop >1080px houdt
   de absolute foto rechts. .hero-photos staat al vroeg in de hero-DOM. */
@media (max-width: 1080px) {
  .werk-hero { display: block; min-height: auto; padding: 6rem 5% 2.5rem; }
  .hero-photos {
    display: block;
    float: right;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: auto;
    margin: 0.15rem 0 0.55rem 1rem;
    z-index: 1;
  }
  .hero-photos-stack { justify-content: flex-end; }
  .hero-photos .hp-back { width: 66px; margin-bottom: 9px; }
  .hero-photos .hp-front { width: 76px; margin-left: -15px; }
  .hero-photos-badge { font-size: 0.56rem; padding: 0.26rem 0.42rem; left: auto; right: 0; bottom: -10px; }
  .werk-title { font-size: 1.7rem; letter-spacing: -0.6px; }
}

/* Final phone footer override: keep mobile footers compact across page-specific CSS. */
@media (max-width: 560px) {
  footer.site-footer { padding: 0.85rem 1rem 0.8rem !important; }
  footer.site-footer .footer-top { display: grid !important; grid-template-columns: 1fr !important; gap: 0.55rem !important; }
  footer.site-footer .footer-brand { grid-column: auto !important; max-width: none !important; }
  footer.site-footer .footer-logo { margin-bottom: 0.25rem !important; }
  footer.site-footer .footer-logo svg { width: 96px !important; height: auto !important; }
  footer.site-footer .footer-tagline,
  footer.site-footer .footer-about,
  footer.site-footer .footer-socials,
  footer.site-footer .footer-regio-row,
  footer.site-footer .footer-top > .footer-col:not(.footer-contact),
  footer.site-footer .footer-contact h4 { display: none !important; }
  footer.site-footer .footer-contact { display: flex !important; flex-wrap: wrap !important; gap: 0.2rem 0.8rem !important; align-items: center !important; }
  footer.site-footer .footer-contact a,
  footer.site-footer .footer-contact span { display: inline-block !important; min-height: 0 !important; margin: 0 !important; font-size: 0.78rem !important; line-height: 1.28 !important; }
  footer.site-footer .footer-contact a:first-of-type { display: none !important; }
  footer.site-footer .footer-bottom-row { flex-direction: row !important; align-items: center !important; justify-content: space-between !important; margin-top: 0.45rem !important; gap: 0.35rem !important; padding-top: 0 !important; }
  footer.site-footer .footer-copy,
  footer.site-footer .footer-legal a { font-size: 0.72rem !important; }
  footer.site-footer .footer-legal { flex-direction: row !important; flex-wrap: wrap !important; gap: 0.25rem 0.75rem !important; }
  footer.site-footer .footer-legal a { min-height: 0 !important; }
}
