/* ==========================================================================
   Schoongewoon – hoofdstylesheet
   Kleuren en typografie volgens het claude.ai/design ontwerp
   ========================================================================== */

/* Lettertypes zelf gehost (AVG: geen verbinding met Google-servers nodig).
   Variabele fonts: één bestand dekt alle diktes. */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/sora-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
}

:root {
  --ink: #1B1A20;
  --body: #4A4852;
  --muted: #6B6874;
  --soft: #5A5863;
  --pink: #E5017F;
  --pink-dark: #C80170;
  --pink-tint: #FCE7F1;
  --purple: #7C6A9E;
  --purple-tint: #F1EAF7;
  --lavender: #F5EEF6;
  --bg: #FBFAFB;
  --card: #FFFFFF;
  --border: #ECE7EF;
  --border-2: #E4DEE8;
  --dark: #1B1A20;
  --dark-card: #26242D;
  --footer-bg: #161519;
  --footer-text: #B8B2C2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: #D6017A; text-decoration: none; }
a:hover { color: #A80160; }

h1, h2, h3 {
  font-family: 'Sora', system-ui, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; }

img { max-width: 100%; }

input, select, textarea { font-family: 'Manrope', sans-serif; font-size: 15px; }

::selection { background: #F7C9E3; }

.container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ==========================================================================
   Topbalk
   ========================================================================== */

.topbar { background: var(--dark); color: #EDE9F0; font-size: 13px; letter-spacing: 0.01em; }
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 9px 24px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: center;
}
.topbar-inner span { display: flex; align-items: center; gap: 8px; text-align: center; }
.topbar-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); display: inline-block; flex-shrink: 0; }

/* ==========================================================================
   Header en navigatie
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px; border-radius: 8px;
  color: var(--muted); font-weight: 600; font-size: 15px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-cta {
  flex-shrink: 0; background: var(--pink); color: #fff;
  padding: 11px 20px; border-radius: 10px; font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 18px rgba(229, 1, 127, 0.22);
  transition: background .15s;
}
.nav-cta:hover { background: var(--pink-dark); color: #fff; }

/* Telefoonknop in de header: opent direct de telefoon */
.nav-phone {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--lavender); color: var(--purple);
  transition: background .15s, color .15s;
}
.nav-phone:hover { background: var(--purple); color: #fff; }
.nav-phone svg { width: 20px; height: 20px; }

/* Hamburger (mobiel) */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--border-2); border-radius: 10px;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 13px 10px;
  color: var(--ink); font-weight: 600; font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a.active { color: var(--pink); }
.mobile-menu .mobile-cta {
  margin-top: 16px; text-align: center;
  background: var(--pink); color: #fff; border-radius: 10px;
  padding: 13px; font-weight: 700; border-bottom: none;
}
.mobile-menu .mobile-cta:hover { background: var(--pink-dark); }

/* Duidelijke belknop in het mobiele menu, boven "Offerte aanvragen" */
.mobile-menu .mobile-call {
  margin-top: 16px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--lavender); color: var(--purple); border-radius: 10px;
  padding: 13px; font-weight: 700; border-bottom: none;
}
.mobile-menu .mobile-call:hover { background: #ECE1F2; }
.mobile-menu .mobile-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-menu .mobile-call + .mobile-cta { margin-top: 10px; }

/* Grijze laag over de pagina zolang het mobiele menu open is */
.menu-backdrop {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(22, 17, 28, 0.45);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s, visibility .25s;
}
.menu-backdrop.show { opacity: 1; visibility: visible; pointer-events: auto; }

/* Pagina niet scrollbaar zolang het menu open is */
body.menu-locked { overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { max-width: 1200px; margin: 0 auto; padding: 72px 24px 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lavender); color: var(--purple);
  font-weight: 700; font-size: 13px; padding: 7px 14px;
  border-radius: 999px; letter-spacing: 0.02em;
}

.hero h1 { font-size: 60px; margin: 22px 0 0; font-weight: 800; }
.hero h1 .accent { color: var(--pink); }
.hero-lead { font-size: 19px; color: var(--body); max-width: 520px; margin-top: 22px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.btn-primary {
  display: inline-block; background: var(--pink); color: #fff;
  padding: 15px 26px; border-radius: 12px; font-weight: 700; font-size: 16px;
  box-shadow: 0 10px 26px rgba(229, 1, 127, 0.24);
  border: none; cursor: pointer; transition: background .15s;
}
.btn-primary:hover { background: var(--pink-dark); color: #fff; }

.btn-secondary {
  display: inline-block; background: #fff; color: var(--ink);
  padding: 15px 26px; border-radius: 12px; font-weight: 700; font-size: 16px;
  border: 1px solid var(--border-2); transition: border-color .15s;
}
.btn-secondary:hover { border-color: var(--purple); color: var(--ink); }

.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; }
.hero-stat .num { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 700; }
.hero-stat .label { font-size: 14px; color: var(--muted); }
.stat-divider { width: 1px; background: var(--border-2); }

.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 5; border: 1px solid var(--border-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-card {
  position: absolute; bottom: -22px; left: -22px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 16px 40px rgba(30, 20, 40, 0.10);
  max-width: 220px;
}
.hero-card .title { font-weight: 700; font-size: 14px; color: var(--purple); }
.hero-card .text { font-size: 13px; color: var(--body); margin-top: 4px; }

/* ==========================================================================
   Secties
   ========================================================================== */

.section { max-width: 1200px; margin: 0 auto; padding: 80px 24px; }

.kicker {
  color: var(--purple); font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 36px; }
.section-head h2 { font-size: 40px; margin-top: 10px; }
.section-link { font-weight: 700; font-size: 15px; white-space: nowrap; }

/* Donker waardenblok */
.values-band { background: var(--dark); border-radius: 24px; padding: 44px 40px; color: #EDE9F0; }
.values-band-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.values-band-head h2 { color: #fff; font-size: 26px; max-width: 420px; }
.values-band-head p { color: var(--footer-text); max-width: 440px; font-size: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.value-card { background: var(--dark-card); border-radius: 14px; padding: 20px; }
.value-card .name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; }
.value-card .name.pink { color: var(--pink); }
.value-card .name.purple { color: #C79BE0; }
.value-card p { font-size: 14px; color: var(--footer-text); margin-top: 6px; }

/* Dienstenkaarten (home) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  transition: box-shadow .2s, border-color .2s;
}
.service-card:hover { box-shadow: 0 18px 44px rgba(30, 20, 40, 0.08); border-color: var(--pink); }
.service-card .icon { width: 64px; height: 64px; border-radius: 14px; overflow: hidden; }
.service-card .icon img, .service-card .icon svg { width: 100%; height: 100%; display: block; }
.service-card h3 { font-size: 20px; margin-top: 18px; }
.service-card p { font-size: 15px; color: var(--soft); margin-top: 10px; }

.service-card-alt {
  background: var(--lavender); border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-card-alt h3 { font-size: 20px; color: #3A2E48; }
.service-card-alt p { font-size: 15px; color: #6A5E78; margin-top: 10px; }
.service-card-alt a { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 15px; }

/* Werkwijze */
.approach-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.approach-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 5 / 4; border: 1px solid var(--border-2); }
.approach-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.approach-grid h2 { font-size: 38px; margin-top: 12px; }

.steps { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.step { display: flex; gap: 16px; }
.step-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Sora', sans-serif;
}
.step-num.pink { background: var(--pink-tint); color: var(--pink); }
.step-num.purple { background: var(--purple-tint); color: var(--purple); }
.step .title { font-weight: 700; font-size: 16px; }
.step p { font-size: 15px; color: var(--soft); margin-top: 3px; }

/* CTA-band */
.cta-band {
  position: relative; overflow: hidden; border-radius: 24px;
  background: linear-gradient(120deg, #E5017F 0%, #B0177E 55%, #7C6A9E 100%);
  padding: 56px 48px; color: #fff;
}
.cta-band-inner { max-width: 620px; position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: 38px; }
.cta-band p { font-size: 18px; color: #FCE1EE; margin-top: 14px; }
.cta-band .btn-invert {
  display: inline-block; margin-top: 28px; background: #fff; color: var(--pink-dark);
  padding: 15px 28px; border-radius: 12px; font-weight: 700; font-size: 16px;
  transition: background .15s;
}
.cta-band .btn-invert:hover { background: var(--pink-tint); color: var(--pink-dark); }
.cta-circle-1 { position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255, 255, 255, 0.10); }
.cta-circle-2 { position: absolute; right: 120px; bottom: -90px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); }

/* ==========================================================================
   Pagina-koppen (subpagina's)
   ========================================================================== */

.page-head { max-width: 1200px; margin: 0 auto; padding: 64px 24px 8px; }
.page-head h1 { font-size: 52px; font-weight: 800; margin-top: 12px; max-width: 760px; }
.page-head .lead { font-size: 19px; color: var(--body); max-width: 620px; margin-top: 18px; }

/* ==========================================================================
   Diensten
   ========================================================================== */

.svc-list { display: flex; flex-direction: column; gap: 20px; }
.svc-row {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 34px;
  display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: center;
}
.svc-icon { width: 96px; height: 96px; border-radius: 20px; overflow: hidden; }
.svc-icon img, .svc-icon svg { width: 100%; height: 100%; display: block; }
.svc-row h2 { font-size: 26px; }
.svc-row p { font-size: 16px; color: var(--soft); margin-top: 10px; max-width: 720px; }

.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guarantee { background: var(--lavender); border-radius: 18px; padding: 28px; }
.guarantee h3 { font-size: 19px; color: #3A2E48; }
.guarantee p { font-size: 15px; color: #6A5E78; margin-top: 8px; }

/* ==========================================================================
   Over ons
   ========================================================================== */

.about-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.about-hero h1 { font-size: 52px; font-weight: 800; margin-top: 12px; }
.about-hero .lead { font-size: 19px; color: var(--body); max-width: 520px; margin-top: 18px; }
.about-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--border-2); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.values-2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.value-tile { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px; }
.value-tile .num {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700;
}
.value-tile .num.pink { background: var(--pink-tint); color: var(--pink); }
.value-tile .num.purple { background: var(--purple-tint); color: var(--purple); }
.value-tile h3 { font-size: 21px; margin-top: 16px; }
.value-tile p { font-size: 15px; color: var(--soft); margin-top: 8px; }

.story-band {
  background: var(--dark); border-radius: 24px; padding: 52px 48px; color: #EDE9F0;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
}
.story-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 1 / 1; border: 1px solid #34313C; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-band .kicker { color: #C79BE0; }
.story-band h2 { color: #fff; font-size: 32px; margin-top: 12px; }
.story-band p { color: var(--footer-text); font-size: 16px; margin-top: 16px; }

/* Foto rechts, tekst links – wisselt af met het donkere verhaalblok erboven */
.founder-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
.founder-grid .founder-photo { order: 2; }
.founder-photo { border-radius: 24px; overflow: hidden; aspect-ratio: 1 / 1; border: 1px solid var(--border-2); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-grid h2 { font-size: 34px; margin-top: 12px; }
.founder-role { font-size: 15px; color: var(--purple); font-weight: 600; margin-top: 4px; }
.founder-bio { font-size: 17px; color: var(--body); margin-top: 18px; max-width: 560px; }

.linkedin-btn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 22px;
  background: var(--lavender); color: var(--purple);
  padding: 11px 18px; border-radius: 10px; font-weight: 700; font-size: 15px;
  transition: background .15s;
}
.linkedin-btn:hover { background: #ECE1F2; color: var(--purple); }
.linkedin-badge {
  font-family: 'Sora', sans-serif; font-weight: 800;
  background: var(--purple); color: #fff;
  width: 22px; height: 22px; border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}

.code-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.code-grid h2 { font-size: 34px; margin-top: 12px; }
.checklist { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.check-item { display: flex; gap: 14px; align-items: flex-start; }
.check-mark {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--pink-tint); color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.check-item p { font-size: 16px; color: #3A3844; }

.quote-card { background: var(--lavender); border-radius: 22px; padding: 40px; }
.quote-card .mark { font-family: 'Sora', sans-serif; font-size: 46px; font-weight: 800; color: var(--pink); line-height: 1; }
.quote-card .quote { font-size: 20px; color: #3A2E48; font-family: 'Sora', sans-serif; font-weight: 600; line-height: 1.35; margin-top: 8px; }
.quote-card .source { font-size: 14px; color: #6A5E78; margin-top: 18px; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; margin-top: 48px; align-items: start; }

.contact-form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 22px; padding: 40px;
  box-shadow: 0 18px 44px rgba(30, 20, 40, 0.05);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: block; margin-top: 18px; }
.form-row .form-field { margin-top: 18px; }
.form-field .field-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.field-label .req { color: var(--pink); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border-2); border-radius: 10px;
  background: #FCFBFC; outline: none;
  transition: border-color .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--pink); }
.form-field textarea { resize: vertical; }

.form-field input.invalid,
.form-field textarea.invalid { border-color: #D33; background: #FFF7F7; }
.field-error { display: none; color: #C0223B; font-size: 13px; margin-top: 5px; }
.field-error.show { display: block; }

/* Honeypot: visueel verborgen, maar aanwezig voor bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.form-status { margin-top: 18px; padding: 14px 16px; border-radius: 10px; font-size: 15px; display: none; }
.form-status.error { display: block; background: #FDECEC; color: #A11B30; border: 1px solid #F5C6C6; }
.form-status.success { display: block; background: #E8F7EE; color: #14663B; border: 1px solid #BCE5CC; }

.form-success { text-align: center; padding: 40px 10px; }
.form-success .icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pink-tint); color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 20px;
}
.form-success h2 { font-size: 26px; }
.form-success p { font-size: 16px; color: var(--soft); margin-top: 10px; max-width: 400px; margin-left: auto; margin-right: auto; }
.form-success button {
  margin-top: 24px; background: var(--lavender); color: var(--purple);
  border: none; padding: 12px 22px; border-radius: 10px;
  font-weight: 700; font-size: 15px; cursor: pointer;
}

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--dark); border-radius: 18px; padding: 28px; color: #EDE9F0; }
.contact-info-card h3 { color: #fff; font-size: 19px; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 18px; font-size: 15px; }
.contact-info-list .label { color: #8A8794; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-info-list .value { margin-top: 4px; }
.contact-info-card a { color: #EDE9F0; display: inline-block; margin-top: 4px; }
.contact-info-card a:hover { color: #fff; }

.map-card { border-radius: 18px; overflow: hidden; border: 1px solid var(--border-2); background: var(--lavender); }
.map-card iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ==========================================================================
   404-pagina
   ========================================================================== */

.notfound { max-width: 720px; margin: 0 auto; padding: 88px 24px 104px; text-align: center; }
.notfound-code {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 56px; line-height: 1;
  color: var(--pink); background: var(--pink-tint);
  border-radius: 22px; padding: 20px 34px;
}
.notfound h1 { font-size: 44px; font-weight: 800; margin-top: 30px; }
.notfound .lead { font-size: 18px; color: var(--body); margin-top: 16px; }
.notfound-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.notfound-hint { font-size: 15px; color: var(--muted); margin-top: 26px; }
.notfound-hint a { font-weight: 700; }

/* ==========================================================================
   Juridische pagina's
   ========================================================================== */

.legal { max-width: 820px; margin: 0 auto; padding: 64px 24px 88px; }
.legal h1 { font-size: 40px; font-weight: 800; margin-top: 12px; }
.legal .updated { font-size: 14px; color: var(--muted); margin-top: 12px; }
.legal h2 { font-size: 24px; margin-top: 44px; }
.legal h3 { font-size: 18px; margin-top: 28px; }
.legal p, .legal li { font-size: 16px; color: var(--body); margin-top: 12px; }
.legal ul { padding-left: 22px; margin: 8px 0 0; }
.legal .legal-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 24px; margin-top: 16px; font-size: 15px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }

.footer-logo { height: 42px; width: auto; display: block; }
.footer-about { margin-top: 18px; font-size: 15px; max-width: 320px; }

.footer-col .col-title { color: #fff; font-weight: 700; font-size: 15px; font-family: 'Sora', sans-serif; }
.footer-col .col-links { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; font-size: 15px; }
.footer-col .col-links a { color: var(--footer-text); }
.footer-col .col-links a:hover { color: #fff; }
.footer-col address { font-style: normal; }

.footer-social { margin-top: 14px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: #26242D; color: var(--footer-text);
  transition: background .15s, color .15s;
}
.footer-social a:hover { background: #0A66C2; color: #fff; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid #2A2830; margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: 13px; color: #7C7887;
}

/* ==========================================================================
   Responsief
   ========================================================================== */

@media (max-width: 1020px) {
  .hero h1 { font-size: 48px; }
  .page-head h1, .about-hero h1 { font-size: 42px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 72px 1fr; }
  .svc-icon { width: 72px; height: 72px; border-radius: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Telefoonknop in de balk faden zodra het menu open is:
     daar staat dan al een grote belknop in */
  .nav-phone { transition: background .15s, color .15s, opacity .2s, transform .2s; }
  .site-header.menu-open .nav-phone { opacity: 0; transform: scale(0.85); pointer-events: none; }

  /* Hero op mobiel: de foto als onderlaag achter de tekst en knoppen,
     de statistieken daaronder op de gewone achtergrond. */
  .hero { padding: 0; }
  .hero-grid { display: block; }
  .hero-copy-wrap { display: contents; }
  .hero-media { display: none; }
  .hero-copy {
    background:
      linear-gradient(180deg, rgba(22, 17, 28, 0.86) 0%, rgba(22, 17, 28, 0.56) 55%, rgba(22, 17, 28, 0.68) 100%),
      url('../img/schoonmakster.jpg') center 30% / cover no-repeat;
    padding: 60px 24px 48px;
  }
  .hero-copy h1 { color: #fff; }
  .hero-copy h1 .accent { color: #FF57AB; }
  .hero-copy .hero-lead { color: rgba(255, 255, 255, 0.9); }
  .hero-copy .badge { background: rgba(255, 255, 255, 0.14); color: #fff; }
  .hero-stats { margin-top: 0; padding: 30px 24px 6px; }

  .approach-grid, .about-hero, .story-band, .founder-grid, .code-grid { grid-template-columns: 1fr; gap: 36px; }
  .founder-grid .founder-photo { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .values-2col { grid-template-columns: 1fr; }

  .section { padding: 56px 24px; }
  .section-head h2 { font-size: 32px; }
  .cta-band { padding: 44px 28px; }
  .cta-band h2 { font-size: 30px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .hero-lead { font-size: 17px; }
  .page-head h1, .about-hero h1 { font-size: 34px; }
  .page-head .lead, .about-hero .lead { font-size: 17px; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .values-band { padding: 32px 24px; }
  .svc-row { padding: 24px; grid-template-columns: 56px 1fr; gap: 18px; }
  .svc-icon { width: 56px; height: 56px; border-radius: 13px; }
  .svc-row h2 { font-size: 21px; }
  .contact-form-card { padding: 26px 20px; }
  .approach-grid h2, .founder-grid h2, .code-grid h2 { font-size: 27px; }
  .notfound { padding: 64px 24px 88px; }
  .notfound h1 { font-size: 32px; }
  .notfound-code { font-size: 44px; padding: 16px 26px; }
  .story-band { padding: 32px 24px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  /* Slogan boven de copyrightregel */
  .footer-bottom { flex-direction: column; gap: 5px; }
  .footer-bottom span:last-child { order: -1; }
}
