/* ============================================================
   OTS Cleaning — otscleaning.be
   Premium, kalm, mobile-first designsysteem
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  color-scheme: dark;
  --bg: #0f1113;
  --surface: #17191d;
  --ink: #edeef0;
  --ink-soft: #c4c9cf;
  --muted: #9aa1a9;
  --faint: #7a8089;
  --heading: #56a9da;
  --line: #343b44;
  --petrol: #4aa3d8;
  --petrol-deep: #7cc1e8;
  --petrol-soft: #14222c;
  --wa: #1da851;
  --wa-deep: #178a43;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(21, 22, 26, 0.05);
  --shadow-md: 0 14px 40px -18px rgba(21, 22, 26, 0.18);
  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: #0f1113 !important; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: #0f1113 !important;
  -webkit-font-smoothing: antialiased;
}

main { background: var(--bg); }

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

a { color: var(--petrol); text-decoration: none; }
a:hover { color: var(--petrol-deep); }

ul[class], ol[class] { list-style: none; }

strong { font-weight: 600; color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--petrol);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: 72px; }
.section-tight { padding-block: 48px; }

@media (min-width: 900px) {
  .section { padding-block: 112px; }
  .section-tight { padding-block: 72px; }
}

/* ---------- 3. Typografie ---------- */
h1, h2, h3, h4 {
  font-weight: 500;
  color: var(--heading);
  line-height: 1.16;
  letter-spacing: -0.014em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 4vw, 2.45rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}

.dim { color: var(--faint); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--petrol);
  margin-bottom: 14px;
}

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--muted); }

@media (min-width: 900px) {
  .section-head { margin-bottom: 56px; }
}

/* ---------- 4. Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { flex: 0 0 auto; }

.btn-ink { background: var(--ink); color: #101113; }
.btn-ink:hover { background: #ffffff; color: #101113; box-shadow: var(--shadow-md); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #178a43; color: #fff; box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.32); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-light { background: #edeef0; color: #101113; }
.btn-light:hover { background: #ffffff; color: #101113; }

.btn-ghost-light { background: transparent; border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; color: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}
.link-arrow::after { content: "\2192"; transition: transform 0.2s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- 5. Header & navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 250, 247, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  --ink: #191b1f;
  --muted: #50545b;
  --line: #d9d8d1;
  --surface: #ffffff;
  --petrol-soft: #e7f1f8;
  --petrol-deep: #0e577c;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { height: 44px; width: auto; }

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding-block: 6px;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] { font-weight: 600; }

.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.sub {
  position: absolute;
  top: calc(100% + 10px);
  left: -14px;
  min-width: 240px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-sub:hover .sub,
.has-sub:focus-within .sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.9rem;
}
.sub a:hover { background: var(--petrol-soft); color: var(--petrol-deep); }

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiel menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-height: 100dvh;
  z-index: 70;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 60px 22px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  display: none;
}
.menu-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}
body.nav-open .mobile-menu { display: block; }
body.nav-open { overflow: hidden; }

.mobile-menu a {
  display: block;
  padding: 9px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.m-sub {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.mobile-menu .m-subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.mobile-menu a[aria-current="page"] { color: var(--petrol); }
.mobile-menu .m-actions {
  margin-top: 14px;
  padding-top: 6px;
  display: grid;
  gap: 12px;
}
.mobile-menu .m-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  font-size: 1.02rem;
  border-bottom: 0;
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none !important; }
}

/* ---------- 6. Hero (home) ---------- */
.hero { padding-block: 56px 64px; }

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
}
.hero-proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof svg { color: var(--petrol); flex: 0 0 auto; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.hero-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  background: rgba(23, 25, 29, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa);
}

@media (min-width: 900px) {
  .hero { padding-block: 84px 96px; }
  .hero-grid { grid-template-columns: 1.05fr 0.9fr; gap: 72px; }
  .hero-visual img { aspect-ratio: 4 / 4.6; }
}

/* ---------- 7. Vertrouwensstrook ---------- */
.trust {
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  padding-block: 26px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.45;
}
.trust-item svg { color: var(--petrol); flex: 0 0 auto; margin-top: 1px; }

@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); padding-block: 30px; }
}

/* ---------- 8. Tweekoloms contentblok ---------- */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}
.split-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.split h2 { margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }

.pillars { margin: 26px 0 6px; display: grid; gap: 13px; }
.pillars li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pillars svg { color: var(--petrol); flex: 0 0 auto; margin-top: 3px; }

@media (min-width: 900px) {
  .split { grid-template-columns: 0.85fr 1fr; gap: 80px; }
  .split.reverse { grid-template-columns: 1fr 0.85fr; }
  .split.reverse .split-visual { order: 2; }
}

/* ---------- 9. Dienstenkaarten ---------- */
.cards {
  display: grid;
  gap: 18px;
}
@media (min-width: 700px) { .cards { grid-template-columns: 1fr 1fr; gap: 22px; } }

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #dcdbd4;
}
.card-media {
  margin: -22px -22px 20px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--petrol-soft);
  color: var(--petrol);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 18px; }
.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}
.card-price { font-weight: 600; color: var(--ink); }
.card-price small { display: block; font-weight: 500; color: var(--faint); font-size: 0.76rem; }

/* Breed callout-paneel */
.callout {
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: grid;
  gap: 18px;
}
.callout h3 { margin-bottom: 6px; }
.callout p { color: var(--muted); font-size: 0.95rem; }
.callout-side {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media (min-width: 800px) {
  .callout {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px 32px;
  }
}

/* ---------- 10. Spec-sheet (signatuur) ---------- */
.packs { display: grid; gap: 22px; }
@media (min-width: 880px) { .packs { grid-template-columns: 1fr 1fr; align-items: start; } }
@media (min-width: 1060px) { .packs-3 { grid-template-columns: repeat(3, 1fr); } }
.packs-3 .pack h3 { font-size: 1.3rem; }

.pack {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.pack-featured { border-color: var(--petrol); box-shadow: var(--shadow-md); }
.pack-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--petrol-soft);
  color: var(--petrol-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pack-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.pack h3 { font-size: 1.45rem; margin-bottom: 8px; }
.pack-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 22px; }

.pack-specs {
  border-top: 1px solid var(--line);
  margin-bottom: 22px;
}
.pack-specs > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.pack-specs dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.pack-specs dd { font-size: 0.95rem; font-weight: 600; color: var(--ink); text-align: right; }
.pack-specs dd small { font-weight: 500; color: var(--muted); }

.pack-includes { margin-bottom: 26px; }
.pack-includes > p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.pack-includes ul { display: grid; gap: 10px; }
.pack-includes li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.pack-includes svg { color: var(--petrol); flex: 0 0 auto; margin-top: 3px; }

.pack .btn { margin-top: auto; }

.pack-wide { max-width: 760px; }

/* ---------- 11. Werkwijze ---------- */
.steps {
  display: grid;
  gap: 28px;
  counter-reset: step;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 40px; } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { counter-increment: step; }
.step::before {
  content: "0" counter(step);
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--petrol);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- 12. Fotoraster ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 760px) { .work-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.work-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
  background: var(--line);
}

/* ---------- 13. CTA-paneel ---------- */
.cta-panel {
  background: linear-gradient(150deg, #15303f, #101c25);
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 26px;
  padding: 52px 26px;
  text-align: center;
}
.cta-panel h2 { color: #fff; margin-bottom: 14px; }
.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 46ch;
  margin: 0 auto 30px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (min-width: 900px) { .cta-panel { padding: 76px 60px; } }

/* ---------- 14. Subpagina-kop & broodkruimel ---------- */
.page-head {
  padding-block: 48px 56px;
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  margin-bottom: 16px;
  max-width: 16ch;
  overflow-wrap: anywhere;
  hyphens: auto;
}
@media (max-width: 480px) {
  .page-head h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--faint);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--faint); }
.breadcrumb a:hover { color: var(--petrol); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--line); }
.breadcrumb [aria-current] { color: var(--ink-soft); font-weight: 500; }

@media (min-width: 900px) { .page-head { padding-block: 72px 80px; } }

/* ---------- 15. Contentlijsten & infovakken ---------- */
.feature-list { display: grid; gap: 16px; }
@media (min-width: 760px) { .feature-list { grid-template-columns: 1fr 1fr; gap: 22px; } }

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.feature h3 { font-size: 1rem; margin-bottom: 6px; }
.feature p { font-size: 0.9rem; color: var(--muted); }

.note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--petrol-soft);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.93rem;
  color: var(--petrol-deep);
  line-height: 1.6;
}
.note svg { flex: 0 0 auto; margin-top: 3px; }

/* ---------- 16. FAQ ---------- */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 2px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--petrol);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 2px 22px;
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 64ch;
}

/* ---------- 17. Contactpagina ---------- */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: start; } }

.contact-methods { display: grid; gap: 14px; margin-block: 28px 34px; }
.method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.method:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--ink); }
.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--petrol-soft);
  color: var(--petrol);
}
.method-icon.wa { background: #e7f6ec; color: var(--wa); }
.method strong { display: block; font-size: 0.98rem; }
.method span { display: block; font-size: 0.85rem; color: var(--muted); }

.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tags li {
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* Formulier */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}
@media (min-width: 600px) { .form-card { padding: 34px 32px; } }

.form-card h2 { font-size: 1.3rem; margin-bottom: 6px; }
.form-card > p { font-size: 0.92rem; color: var(--muted); margin-bottom: 24px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(14, 81, 99, 0.12);
}
.form-note { font-size: 0.82rem; color: var(--faint); margin-top: 14px; text-align: center; }

/* ---------- 18. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 56px 0 28px;
  margin-top: 24px;
}
.footer-grid { display: grid; gap: 36px; margin-bottom: 44px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; } }

.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--muted); max-width: 30ch; }

.site-footer h4 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 0.92rem; color: var(--ink-soft); }
.footer-links a:hover { color: var(--petrol); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--faint);
}

/* ---------- 19. WhatsApp-knop (zwevend) ---------- */
.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px -8px rgba(23, 138, 67, 0.55);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.wa-fab:hover { transform: translateY(-2px); background: #178a43; color: #fff; }

/* ---------- 20. Onthulling bij scrollen ---------- */
.fx {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fx.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx { opacity: 1; transform: none; transition: none; }
  .btn, .card, .method { transition: none; }
}

@media print {
  .site-header, .wa-fab, .mobile-menu, .cta-panel { display: none !important; }
}

/* ---------- 21. Lichte vlakken op de donkere site ---------- */
.band,
.trust,
.site-footer,
.card,
.pack,
.callout,
.feature,
.form-card,
.method {
  --bg: #f3f3ef;
  --ink: #1d1f24;
  --ink-soft: #44484f;
  --muted: #5e6268;
  --faint: #8a8d93;
  --heading: #186a9b;
  --line: #e3e2db;
  --surface: #ffffff;
  --petrol: #0e6391;
  --petrol-deep: #0a4a6e;
  --petrol-soft: #e7f1f8;
}
.band, .trust, .site-footer { background: #f6f6f3; }
.band { border-block: 1px solid #e7e6df; }
.card, .pack, .callout, .feature, .form-card, .method { color: var(--ink-soft); }

/* ---------- 22. Premium fotorand ---------- */
.hero-visual img,
.split-visual img,
.work-grid img {
  border: 1px solid rgba(255, 255, 255, 0.34);
}
.band .split-visual img { border-color: rgba(0, 0, 0, 0.12); }

/* ---------- 23. Brede fotokaders & menu-actie ---------- */
.card-media.sq img { aspect-ratio: 1 / 1; object-position: 50% 44%; }

/* ---------- 24. Accentknop ---------- */
.btn-accent { background: #0e6391; color: #fff; }
.btn-accent:hover { background: #0a4a6e; color: #fff; box-shadow: var(--shadow-md); }

/* ---------- 26. On The Spot in de balk ---------- */
.nav { position: relative; }
.nav-mid {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  margin-right: -0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #11618a;
  pointer-events: none;
  user-select: none;
}
@media (min-width: 960px) { .nav-mid { display: none; } }

/* ---------- 27. Regiolinks in werkgebied-chips ---------- */
.area-tags li a { color: inherit; text-decoration: none; }
.area-tags li a:hover { text-decoration: underline; text-underline-offset: 3px; }
