:root {
  --ink: #19211f;
  --muted: #60706a;
  --paper: #fbfcf9;
  --surface: #ffffff;
  --line: #dde6df;
  --teal: #0a5c56;
  --teal-dark: #073f3b;
  --mint: #dff3ea;
  --coral: #e95f4e;
  --coral-dark: #bf3f31;
  --gold: #f4bd45;
  --sky: #dcecf7;
  --shadow: 0 18px 55px rgba(15, 35, 31, 0.14);
  --radius: 8px;
  --surface-2: #edf5f1;
  --accent-ink: #073f3b;
  --header-bg: rgba(7, 63, 59, 0.78);
  --header-bg-scrolled: rgba(251, 252, 249, 0.94);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Real text controls keep a >=16px font so iOS never auto-zooms on focus,
   and so they don't inherit small label fonts via `font: inherit`. */
input:not([type="radio"]):not([type="checkbox"]):not([type="range"]):not([type="color"]),
select,
textarea {
  font-size: 16px;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  color: var(--ink);
  border-bottom-color: var(--line);
  background: var(--header-bg-scrolled);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.header-actions,
.store-actions,
.booking-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.primary-button,
.ghost-button,
.dark-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  white-space: nowrap;
}

.primary-button {
  padding: 0 20px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(233, 95, 78, 0.27);
}

.primary-button:hover {
  background: var(--coral-dark);
}

.ghost-button {
  padding: 0 16px;
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid currentColor;
}

.site-header.scrolled .ghost-button {
  background: var(--surface);
  border-color: var(--line);
}

.dark-button {
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
}

.icon-button {
  width: 44px;
  padding: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid currentColor;
}

.small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.9rem;
}

[data-lucide] {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  stroke-width: 2.3;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: end;
  color: #fff;
  background: #0a332f url("assets/hero-home-service.png") center / cover no-repeat;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 28, 25, 0.9) 0%, rgba(6, 28, 25, 0.66) 42%, rgba(6, 28, 25, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 28, 25, 0.72) 0%, rgba(6, 28, 25, 0) 48%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 18px;
  font-size: 4.25rem;
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.1rem;
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(230px, 1.4fr) minmax(130px, 0.55fr) minmax(230px, auto) auto;
  gap: 10px;
  align-items: end;
  max-width: 1060px;
  padding: 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-field span,
.urgency-control legend,
.booking-form label,
.pro-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-field div,
.filter-search {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-field input,
.filter-search input,
.booking-form input,
.booking-form select,
.booking-form textarea,
.pro-form input,
.pro-form select {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.search-field input,
.filter-search input {
  min-height: 48px;
  padding: 0;
  border: 0;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.pro-form input,
.pro-form select {
  padding: 13px 14px;
}

.urgency-control,
.segmented {
  display: flex;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.urgency-control label,
.segmented label {
  flex: 1;
  margin: 0;
}

.urgency-control input,
.segmented input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.urgency-control span,
.segmented span {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: none;
}

.urgency-control input:checked + span,
.segmented input:checked + span {
  color: #fff;
  background: var(--teal);
  border-color: var(--accent-ink);
}

.urgency-control input:focus-visible + span,
.segmented input:focus-visible + span {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-proof span {
  padding: 7px 10px;
  background: rgba(7, 63, 59, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 36px));
  margin: 20px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 35, 31, 0.08);
  overflow: hidden;
}

.quick-strip button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  color: var(--ink);
  background: var(--surface);
  border: 0;
  border-right: 1px solid var(--line);
  font-weight: 850;
}

.quick-strip button:last-child {
  border-right: 0;
}

.quick-strip button:hover {
  background: var(--mint);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-tight {
  padding-top: 78px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.app-copy p,
.pro-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.service-tools {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.service-filters {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(150px, 0.8fr);
  gap: 10px;
}

.filter-search {
  min-height: 54px;
}

.location-status {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: -4px 0 20px;
  padding: 12px 14px;
  color: var(--accent-ink);
  background: var(--mint);
  border: 1px solid #b9ded2;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
}

.location-status[data-status="warning"] {
  color: #7a3d13;
  background: #fff2d6;
  border-color: #f2d18a;
}

.location-status button {
  min-height: 34px;
  padding: 0 10px;
  color: inherit;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-tabs button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--accent-ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  white-space: nowrap;
}

.category-tabs button.active {
  color: #fff;
  background: var(--teal);
  border-color: var(--accent-ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.process-grid article,
.review-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(15, 35, 31, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mint);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
}

.service-card-body h3 a {
  color: inherit;
}

.service-card-body h3 a:hover {
  color: var(--accent-ink);
}

.service-card-body .service-availability {
  margin-top: auto;
}

.service-card header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--accent-ink);
  background: var(--mint);
  border-radius: var(--radius);
}

.service-card p {
  color: var(--muted);
}

.task-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-content: start;
  margin: 8px 0 18px;
}

.task-list span,
.task-list a {
  padding: 6px 8px;
  color: var(--accent-ink);
  background: var(--surface-2);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.task-list a:hover {
  color: #fff;
  background: var(--teal);
}

/* Klussen beyond the first 6 are in the DOM but collapsed until "Zie alle klussen". */
.task-list .task-extra {
  display: none;
}
.task-list.is-open .task-extra {
  display: inline-block;
}

.task-list .task-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  color: var(--teal);
  background: transparent;
  border: 1.5px solid var(--teal);
  border-radius: 6px;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.task-list .task-more i {
  width: 14px;
  height: 14px;
  transition: transform 0.18s ease;
}
.task-list .task-more[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.task-list .task-more:hover {
  color: #fff;
  background: var(--teal);
}

.service-availability {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 9px;
  color: var(--accent-ink);
  background: var(--mint);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 850;
}

.service-availability [data-lucide] {
  width: 15px;
  height: 15px;
}

.service-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-meta strong {
  color: var(--accent-ink);
}

.process-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article,
.review-grid article {
  position: relative;
  padding: 28px;
}

.process-grid article [data-lucide] {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--coral);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(10, 92, 86, 0.18);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) 1.2fr;
  gap: 22px;
  align-items: start;
}

.price-table {
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: rgba(255, 255, 255, 0.76);
}

.price-row strong {
  white-space: nowrap;
}

.assurance-list {
  display: grid;
  gap: 12px;
}

.assurance-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.assurance-list [data-lucide] {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--coral);
}

.assurance-list p {
  margin: 0;
  color: var(--muted);
}

.app-section,
.pro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.app-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--surface-2);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.feature-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 850;
}

.feature-list [data-lucide] {
  color: var(--accent-ink);
}

.app-image {
  margin: 0;
  justify-self: end;
  width: min(100%, 560px);
}

.app-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.1rem;
}

.review-grid article p {
  color: var(--ink);
  font-size: 1.06rem;
}

.review-grid article span {
  color: var(--muted);
  font-weight: 800;
}

.pro-section {
  align-items: start;
  padding-top: 70px;
}

.pro-copy ul {
  padding-left: 20px;
  color: var(--muted);
}

.pro-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  padding: 18px 20px;
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  color: #fff;
  background: var(--teal-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px 40px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 36px;
}

.footer-about {
  max-width: 360px;
}

.footer-about p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-col h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 880px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}


.booking-card {
  width: min(880px, 100%);
}

/* Header: service + live price + trust */
.booking-head {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 44px;
  margin-bottom: 20px;
}

.booking-head-main {
  min-width: 0;
}

.booking-head h2 {
  margin: 2px 0 12px;
  font-size: 2.2rem;
  line-height: 1.05;
}

.booking-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.booking-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.booking-trust [data-lucide="star"] {
  color: var(--gold);
}

.booking-trust [data-lucide="shield-check"],
.booking-trust [data-lucide="badge-check"] {
  color: var(--accent-ink);
}

.booking-price {
  display: grid;
  gap: 2px;
  min-width: 168px;
  padding: 14px 16px;
  text-align: right;
  color: var(--accent-ink);
  background: var(--mint);
  border: 1px solid #bfe3d4;
  border-radius: var(--radius);
}

.booking-price-label {
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-price strong {
  font-size: 1.7rem;
  line-height: 1.05;
}

.booking-price-sub {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

/* Labeled stepper */
.booking-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0 0 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.booking-progress li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-progress .dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--accent-ink);
  background: var(--surface-2);
  border-radius: 50%;
  font-size: 0.85rem;
}

.booking-progress li.active {
  color: var(--ink);
}

.booking-progress li.active .dot {
  color: #fff;
  background: var(--teal);
}

.booking-progress li.current .dot {
  box-shadow: 0 0 0 4px rgba(10, 92, 86, 0.16);
}

.booking-step {
  display: none;
  gap: 14px;
}

.booking-step.active {
  display: grid;
}

.booking-step .eyebrow {
  margin-bottom: 2px;
  color: var(--coral);
}

.booking-step h3 {
  margin-bottom: 2px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.booking-step-intro {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-grid label {
  margin: 0;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2px;
}

/* Time-slot chips */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.slot-grid legend {
  display: block;
  margin-bottom: 7px;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slot-grid label {
  position: relative;
  margin: 0;
}

.slot-grid input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.slot-grid span {
  display: grid;
  gap: 3px;
  height: 100%;
  padding: 12px 10px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.slot-grid span strong {
  font-size: 0.92rem;
}

.slot-grid input:checked + span {
  color: #fff;
  background: var(--teal);
  border-color: var(--accent-ink);
}

.slot-grid input:focus-visible + span {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

/* Photo upload + add-on checkbox */
.upload-field {
  position: relative;
  display: grid;
  gap: 8px;
}

.upload-field input[type="file"] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
}

.upload-field:focus-within .upload-cta {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.upload-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  color: var(--accent-ink);
  background: var(--mint);
  border: 1px dashed #9ed3c0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: none;
}

.check-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-field input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent-ink);
}

.check-field input:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.check-field span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: none;
}

.check-field span strong {
  color: var(--ink);
  font-weight: 800;
}

/* Confirmation summary */
.quote-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.quote-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.quote-facts dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-facts dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.quote-breakdown {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  font-size: 0.95rem;
}

.quote-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
}

.quote-breakdown li.muted {
  color: var(--accent-ink);
}

.quote-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
  font-weight: 900;
}

.quote-total strong {
  font-size: 1.45rem;
}

.quote-total small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.quote-note,
.booking-fineprint {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.quote-note {
  font-weight: 600;
}

.field-help {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.field-help[data-status="success"] {
  color: var(--accent-ink);
}

.field-help[data-status="warning"] {
  color: #8a470f;
}

.booking-actions {
  justify-content: space-between;
  margin-top: 22px;
}

/* Standalone booking page (boeken.html) */
.site-header.solid {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: var(--teal-dark);
}

.booking-page {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(26px, 5vw, 52px) 0 64px;
}

.booking-page-inner {
  display: grid;
  gap: 16px;
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.booking-back:hover {
  color: var(--ink);
}

.page-card {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-card .booking-head {
  padding-right: 0;
}

.booking-success {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.booking-success .success-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
}

.booking-success .success-mark [data-lucide] {
  width: 30px;
  height: 30px;
}

.booking-success h2 {
  margin: 0;
  font-size: 2.2rem;
}

.booking-success p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.booking-success-detail {
  color: var(--ink);
  font-weight: 800;
}

.booking-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.ghost-button.outline {
  color: var(--accent-ink);
  background: var(--surface);
  border-color: var(--line);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  max-width: min(420px, calc(100vw - 36px));
  padding: 16px 18px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  text-align: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
  }

  .site-header.nav-open .main-nav a {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .site-header.scrolled.nav-open .main-nav a {
    border-top-color: var(--line);
  }

  .site-header.nav-open .header-actions {
    justify-content: stretch;
  }

  .site-header.nav-open .header-actions > * {
    flex: 1;
  }

  .hero-search,
  .service-tools,
  .service-filters,
  .pricing-layout,
  .app-section,
  .pro-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-image {
    justify-self: start;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.45rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 84px;
    padding-bottom: 18px;
  }

  h1 {
    font-size: 2.3rem;
    line-height: 1.03;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-search {
    padding: 10px;
    gap: 8px;
  }

  .hero-search .search-field span,
  .hero-search .urgency-control legend {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero-search .search-field div,
  .hero-search .urgency-control span {
    min-height: 46px;
  }

  .hero-search .primary-button {
    min-height: 46px;
  }

  .hero-proof {
    display: none;
  }

  .urgency-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-strip,
  .service-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip button:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 28px);
    padding-block: 66px;
  }

  .band,
  .app-section {
    width: 100%;
    padding-inline: 14px;
  }

  .service-card {
    min-height: auto;
  }

  .location-status {
    display: grid;
  }


  .page-card {
    padding: 22px 16px;
  }

  .booking-price {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-progress .label {
    display: none;
  }

  .booking-actions {
    display: grid;
  }
}

/* ======================================================================
   Design polish & accessibility best practices
   ====================================================================== */

/* Skip-to-content link (visible on keyboard focus) */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

/* Consistent, visible focus ring for keyboard users */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Light ring against the translucent dark header */
.site-header:not(.scrolled) :where(a, button):focus-visible {
  outline-color: #fff;
}

/* Smooth, restrained micro-interactions */
.primary-button,
.ghost-button,
.dark-button,
.icon-button,
.category-tabs button,
.main-nav a,
.footer-col a,
.booking-back,
.service-card,
.process-grid article,
.review-grid article,
.slot-grid span,
.segmented span,
.upload-cta,
.booking-progress .dot,
.search-field div,
.filter-search,
.booking-form input,
.booking-form select,
.booking-form textarea,
.pro-form input,
.pro-form select {
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.2s ease,
    transform 0.12s ease;
}

.primary-button:hover,
.dark-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(233, 95, 78, 0.32);
}

.primary-button:active,
.dark-button:active,
.ghost-button:active,
.icon-button:active {
  transform: translateY(0);
}

.category-tabs button:hover {
  border-color: var(--accent-ink);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #bfe0d4;
  box-shadow: 0 22px 44px rgba(15, 35, 31, 0.12);
}

/* Inputs: replace the removed native outline with a clear focus state */
.booking-form input:focus-visible,
.booking-form select:focus-visible,
.booking-form textarea:focus-visible,
.pro-form input:focus-visible,
.pro-form select:focus-visible {
  outline: none;
  border-color: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(10, 92, 86, 0.16);
}

.search-field input:focus-visible,
.filter-search input:focus-visible {
  outline: none;
}

.search-field div:focus-within,
.filter-search:focus-within {
  border-color: var(--accent-ink);
  box-shadow: 0 0 0 3px rgba(10, 92, 86, 0.14);
}

/* Offset anchored sections so the sticky header never covers headings
   (excludes form controls, which shouldn't carry a scroll offset) */
[id]:not(input):not(select):not(textarea):not(datalist) {
  scroll-margin-top: 96px;
}

/* Typography: avoid orphans / ragged lines on modern browsers */
h1,
h2,
h3,
.booking-success h2 {
  text-wrap: balance;
}

p,
.hero-copy,
.booking-step-intro {
  text-wrap: pretty;
}

/* Honour users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ======================================================================
   Autocomplete dropdown
   ====================================================================== */
.ac-list {
  position: fixed;
  z-index: 300;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 288px;
  overflow-y: auto;
}

.ac-item {
  display: grid;
  gap: 1px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.ac-item:hover,
.ac-item.active {
  background: var(--mint);
}

.ac-main {
  font-weight: 700;
  color: var(--ink);
}

.ac-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

.ac-list mark {
  background: transparent;
  color: var(--accent-ink);
  font-weight: 800;
}

/* ======================================================================
   Inline calendar date picker
   ====================================================================== */
.calendar-field {
  display: grid;
  gap: 7px;
}

.calendar-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.calendar-head strong {
  font-size: 1rem;
  text-transform: capitalize;
}

.calendar-nav {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--accent-ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}

.calendar-nav:hover:not(:disabled) {
  background: var(--mint);
}

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

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

.calendar-dow {
  display: grid;
  place-items: center;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.calendar-day:hover:not(:disabled) {
  background: var(--mint);
}

.calendar-day.today {
  border-color: var(--accent-ink);
}

.calendar-day.selected {
  color: #fff;
  background: var(--teal);
  border-color: var(--accent-ink);
}

.calendar-day:disabled {
  color: #c2d0ca;
  background: transparent;
  cursor: not-allowed;
}

.calendar-day.blank {
  background: transparent;
  border: 0;
  pointer-events: none;
}

/* ======================================================================
   Service detail page (dienst.html)
   ====================================================================== */
.dienst-page {
  --accent: var(--teal);
}

.dienst-page .booking-page-inner {
  display: block;
}

.dienst-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  padding: 6px 0 30px;
}

.dienst-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dienst-hero-body .eyebrow {
  color: var(--accent);
}

.dienst-hero-body h1 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  line-height: 1.04;
}

.dienst-lead {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.15rem;
}

.dienst-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 16px 0 12px;
}

.dienst-price {
  font-weight: 800;
  color: var(--ink);
}

.dienst-availability {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.dienst-availability [data-lucide] {
  color: var(--accent);
}

.dienst-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.dienst-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.dienst-body {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.6;
}

.dienst-section .ghost-button.outline {
  margin-top: 18px;
}

.dienst-tasks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dienst-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.dienst-task span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dienst-task span [data-lucide] {
  color: var(--accent);
}

.dienst-task > [data-lucide] {
  color: var(--muted);
}

.dienst-task:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 35, 31, 0.08);
}

.dienst-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dienst-related-card {
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.dienst-related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dienst-related-card span {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.dienst-related-card strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.dienst-related-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15, 35, 31, 0.1);
}

.dienst-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 28px clamp(20px, 4vw, 36px);
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
}

.dienst-cta h2 {
  margin: 0 0 6px;
  color: #fff;
}

.dienst-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.dienst-cta .primary-button {
  color: #19211f;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.dienst-cta .primary-button:hover {
  background: #eef3f0;
}

.dienst-missing {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 64px 0;
  text-align: center;
}

@media (max-width: 820px) {
  .dienst-hero {
    grid-template-columns: 1fr;
  }

  .dienst-tasks,
  .dienst-related {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumbs + task page backlink */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.crumbs a:hover {
  color: var(--ink);
}

.crumbs span[aria-hidden] {
  opacity: 0.5;
}

.crumbs span[aria-current] {
  color: var(--ink);
}

.dienst-backlink {
  margin: 18px 0 0;
}

.dienst-backlink a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
}

.dienst-backlink a:hover {
  text-decoration: underline;
}

/* Dienst & Taak comboboxes (autocomplete inputs on the booking page) */
.booking-form .combo-input {
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2360706a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

/* Service-page showcase banner */
.dienst-showcase {
  position: relative;
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
}

.dienst-showcase-img {
  display: block;
  width: 100%;
  height: clamp(220px, 30vw, 320px);
  object-fit: cover;
}

.dienst-showcase-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: clamp(22px, 5vw, 56px);
  color: #fff;
  background: linear-gradient(90deg, rgba(6, 21, 19, 0.5) 0%, rgba(6, 21, 19, 0.2) 52%, transparent 100%);
}

.dienst-showcase-text h2 {
  margin: 0;
  max-width: 560px;
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

.dienst-showcase-text p {
  margin: 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}


/* ======================================================================
   Dark theme
   ====================================================================== */
:root[data-theme="dark"] {
  --ink: #e8f1ee;
  --muted: #9fb2ad;
  --paper: #0f161a;
  --surface: #18222a;
  --surface-2: #212e37;
  --line: #2c3a43;
  --mint: #143430;
  --accent-ink: #6fd6c4;
  --teal: #1f9b8b;
  --header-bg: rgba(8, 30, 28, 0.86);
  --header-bg-scrolled: rgba(13, 21, 25, 0.94);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
}

:root[data-theme="dark"] .booking-price,
:root[data-theme="dark"] .upload-cta {
  border-color: var(--line);
}

:root[data-theme="dark"] .field-help[data-status="warning"] {
  color: #f0a868;
}

:root[data-theme="dark"] .calendar-day:disabled {
  color: #4d5b63;
}

:root[data-theme="dark"] .hero-search,
:root[data-theme="dark"] .search-field div,
:root[data-theme="dark"] .filter-search {
  border-color: var(--line);
}

:root[data-theme="dark"] .location-status[data-status="warning"] {
  color: #f0a868;
}

/* ======================================================================
   Theme toggle (footer)
   ====================================================================== */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.theme-toggle [data-lucide] {
  width: 17px;
  height: 17px;
}

:root[data-theme="dark"] .theme-toggle .ti-moon,
:root[data-theme="light"] .theme-toggle .ti-sun {
  display: none;
}

/* Hero "Moment" select + native-control color scheme */
:root {
  color-scheme: light;
}

:root[data-theme="dark"] {
  color-scheme: dark;
}

.search-field select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* Lighter combobox chevron in dark mode */
:root[data-theme="dark"] .booking-form .combo-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239fb2ad' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* ======================================================================
   Content / info pages (footer pages)
   ====================================================================== */
.content-page {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 76px) 0 72px;
}

.content-page .page-eyebrow {
  margin: 0 0 12px;
  color: var(--accent-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-page h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.content-lead {
  max-width: 64ch;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.5;
}

.content-section {
  margin-top: 34px;
}

.content-section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.content-page p {
  max-width: 70ch;
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.7;
}

.content-page ul {
  max-width: 70ch;
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.7;
}

.content-page li {
  margin-bottom: 6px;
}

.content-page p a,
.content-page li a {
  color: var(--accent-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-note {
  max-width: 70ch;
  padding: 14px 16px;
  background: var(--surface-2);
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  color: var(--muted);
}

.content-note strong {
  color: var(--ink);
}

.steps-list {
  max-width: 70ch;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.steps-list li {
  position: relative;
  padding: 16px 18px 16px 58px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1.6;
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 10px 0;
}

.contact-card {
  display: grid;
  gap: 3px;
  padding: 18px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card .contact-ic {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  color: var(--accent-ink);
  background: var(--mint);
  border-radius: var(--radius);
}

.contact-card strong {
  font-size: 1rem;
}

.contact-card span:last-child {
  color: var(--muted);
  font-weight: 600;
}

a.contact-card:hover {
  border-color: var(--teal);
}

.contact-form {
  max-width: 560px;
}

.form-note {
  color: var(--accent-ink);
  font-weight: 700;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.role-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.role-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.role-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.role-tag {
  display: inline-block;
  padding: 4px 10px;
  color: var(--accent-ink);
  background: var(--surface-2);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

@media (max-width: 680px) {
  .contact-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================================
   Service-specific qualifying questions (booking step 1)
   ====================================================================== */
.service-questions:empty {
  display: none;
}

.questions-card {
  display: grid;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
  counter-reset: kk-question;
}

.questions-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.question {
  display: grid;
  gap: 11px;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 14px;
}

.question-label {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
}
.question-label .ql-text {
  flex: 1;
}
.question-label::before {
  counter-increment: kk-question;
  content: counter(kk-question);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  align-self: flex-start;
  margin-top: 1px;
}

.q-optional {
  color: var(--muted);
  font-weight: 600;
  text-transform: none;
}

.q-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.q-options label {
  position: relative;
  margin: 0;
}

.q-options input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.q-options span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 17px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.q-options span:hover {
  border-color: var(--muted);
}

.q-options input:checked + span {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 2px 6px rgba(10, 92, 86, 0.25);
}
.q-options input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(10, 92, 86, 0.22);
}

.q-options input:focus-visible + span {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.quote-answers {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.quote-answers-title {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-answers dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.quote-answers div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.quote-answers dt {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.quote-answers dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

/* ======================================================================
   Booking wizard (boeken.html / booking.js) — mobile-first
   ====================================================================== */
.booking-intro {
  margin-bottom: 18px;
}
.booking-intro h1 {
  margin: 6px 0 10px;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  line-height: 1.12;
}
.booking-intro-sub {
  margin: 0 0 14px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.02rem;
}
.booking-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.booking-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}
.booking-trust i {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

/* Keep the booking column (intro + wizard + supporting content) one width */
.booking-page:not(.dienst-page) .booking-page-inner {
  max-width: 880px;
  margin-inline: auto;
}

.wizard-card {
  padding: clamp(16px, 4vw, 30px);
}

/* Wizard inputs — 16px to avoid iOS zoom, full-width, comfy tap height */
.wizard input:not([type="radio"]):not([type="file"]),
.wizard select,
.wizard textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  box-shadow: 0 1px 2px rgba(15, 25, 22, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.wizard input:not([type="radio"]):not([type="file"])::placeholder,
.wizard textarea::placeholder {
  color: var(--muted);
  font-weight: 500;
}
.wizard input:not([type="radio"]):not([type="file"]):hover,
.wizard select:hover,
.wizard textarea:hover {
  border-color: var(--muted);
}
.wizard textarea {
  min-height: 120px;
  resize: vertical;
}
.wizard input:not([type="radio"]):not([type="file"]):focus,
.wizard input:not([type="radio"]):not([type="file"]):focus-visible,
.wizard select:focus,
.wizard select:focus-visible,
.wizard textarea:focus,
.wizard textarea:focus-visible {
  border-color: var(--teal);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(10, 92, 86, 0.18), 0 1px 2px rgba(15, 25, 22, 0.06);
}

/* Top bar + progress */
.wz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.wz-stepcount {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wz-mk-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
  color: var(--accent-ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
}
.wz-mk-toggle i {
  width: 16px;
  height: 16px;
}
.wz-progress {
  height: 6px;
  margin: 12px 0 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.wz-progress > span {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.wz-head {
  margin: 18px 0 14px;
}
.wz-title {
  margin: 0;
  font-size: clamp(1.3rem, 5vw, 1.7rem);
  line-height: 1.15;
}
.wz-recap {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.wz-recap .wz-sep {
  color: var(--line);
  margin: 0 2px;
}

.wz-error {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 11px 14px;
  color: #8a2a1e;
  background: #fdecea;
  border: 1px solid #f4c4bd;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
}
:root[data-theme="dark"] .wz-error {
  color: #ffd9d2;
  background: rgba(191, 63, 49, 0.18);
  border-color: rgba(233, 95, 78, 0.4);
}
.wz-error i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.wz-body {
  display: grid;
  gap: 16px;
}

/* Mode choice */
.wz-modes {
  display: grid;
  gap: 14px;
}
.wz-mode {
  display: grid;
  gap: 8px;
  padding: 20px;
  text-align: left;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.05s ease;
}
.wz-mode:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}
.wz-mode:active {
  transform: translateY(1px);
}
.wz-mode-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--teal);
  border-radius: 12px;
}
.wz-mode-ic i {
  width: 24px;
  height: 24px;
}
.wz-mode strong {
  font-size: 1.18rem;
}
.wz-mode-sub {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}
.wz-mode-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  color: var(--coral);
  font-weight: 800;
}
.wz-mode-go i {
  width: 17px;
  height: 17px;
}
.wz-callfallback {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.wz-callfallback a {
  color: var(--accent-ink);
  font-weight: 800;
}

/* Search + selectable cards (services / jobs) */
.wz-search {
  position: relative;
  display: flex;
  align-items: center;
}
.wz-search > i {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.wz-search input {
  padding-left: 42px !important;
}
.wz-cards {
  display: grid;
  gap: 10px;
}
.wz-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 60px;
  padding: 12px 14px;
  text-align: left;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.wz-card:hover {
  border-color: var(--teal);
  background: var(--surface-2);
}
.wz-card-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--teal);
  background: var(--surface-2);
  border-radius: 10px;
}
.wz-card-ic i {
  width: 20px;
  height: 20px;
}
.wz-card-main {
  display: grid;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.wz-card-main strong {
  font-size: 1rem;
}
.wz-card-main small {
  color: var(--muted);
  font-size: 0.85rem;
}
.wz-card-go {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
}

.wz-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 2px;
  color: var(--accent-ink);
  background: none;
  border: none;
  font: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wz-link i {
  width: 17px;
  height: 17px;
}
.wz-link-block {
  margin-top: 4px;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  text-decoration: none;
}
.wz-link-block:hover {
  border-color: var(--teal);
  background: var(--surface-2);
}

/* Fields */
.wz-field {
  display: grid;
  gap: 7px;
}
.wz-label {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}
.wz-opt {
  color: var(--muted);
  font-weight: 600;
}
.wz-grid2 {
  display: grid;
  gap: 16px;
}
.wz-fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
.wz-fieldset legend {
  padding: 0;
  margin-bottom: 9px;
  font-weight: 800;
  font-size: 0.92rem;
}

/* Tiles (urgency / timeslot / timing / quote count) */
.wz-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.wz-tile {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 56px;
  align-content: center;
  padding: 12px 16px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.wz-tile input {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.wz-tile-title {
  font-weight: 800;
}
.wz-tile-sub {
  color: var(--muted);
  font-size: 0.85rem;
}
.wz-tile.is-on,
.wz-tile:has(input:checked) {
  border-color: var(--teal);
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--teal);
}
.wz-tile:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(10, 92, 86, 0.18);
}

.wz-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 0 0;
  padding: 14px 16px;
  background: var(--surface-2);
  border-radius: 12px;
  font-weight: 700;
}
.wz-total strong {
  font-size: 1.25rem;
}

/* Photos */
.wz-photos {
  display: grid;
  gap: 12px;
}
.wz-upload {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  color: var(--accent-ink);
  background: var(--surface-2);
  border: 1px dashed var(--line);
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}
.wz-upload small {
  color: var(--muted);
  font-weight: 600;
}
.wz-upload i {
  width: 20px;
  height: 20px;
}
.wz-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
}
.wz-photo-grid:empty {
  display: none;
}
.wz-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.wz-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wz-photo-x {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: rgba(15, 25, 22, 0.7);
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
.wz-photo-x i {
  width: 15px;
  height: 15px;
}

/* Summary card */
.wz-summary {
  margin-top: 2px;
  padding: 16px;
  background: var(--surface-2);
  border-radius: 12px;
}
.wz-summary-title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}
.wz-summary dl {
  display: grid;
  gap: 8px;
  margin: 0;
}
.wz-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.wz-summary dt {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.wz-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}
.wz-summary-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Confirmation */
.wz-done {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}
.wz-done-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
}
.wz-done-mark i {
  width: 32px;
  height: 32px;
}
.wz-done-lead {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}
.wz-done .wz-summary {
  width: 100%;
  text-align: left;
}
.wz-done-note {
  margin: 0;
  max-width: 52ch;
  color: var(--ink);
}
.wz-done-demo {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Hints */
.wz-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}
.wz-hint-soft {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 0;
  font-size: 0.88rem;
}
.wz-hint-soft i {
  width: 17px;
  height: 17px;
  color: var(--teal);
  flex-shrink: 0;
}

/* Actions */
.wz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.wz-actions .ghost-button,
.wz-actions .primary-button {
  min-height: 48px;
}
.wz-actions .primary-button {
  margin-left: auto;
}
.wz-spacer {
  flex: 0 0 auto;
}
.wz-actions-center {
  justify-content: center;
  border-top: none;
}
.wz-actions-center .primary-button {
  margin-left: 0;
}

/* Mijn klussen panel */
.mk-panel {
  margin: 14px 0 4px;
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.mk-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mk-panel-head strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mk-panel-head i {
  width: 18px;
  height: 18px;
}
.mk-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mk-item {
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.mk-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mk-status {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}
.mk-direct {
  color: #0a5c2e;
  background: #d9f3e2;
}
.mk-offerte {
  color: #7a4a00;
  background: #fbeccb;
}
:root[data-theme="dark"] .mk-direct {
  color: #9be8bd;
  background: rgba(16, 122, 70, 0.25);
}
:root[data-theme="dark"] .mk-offerte {
  color: #f4d79a;
  background: rgba(180, 130, 20, 0.22);
}
.mk-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* No-JS fallback */
.wz-noscript {
  padding: 24px;
  text-align: center;
}
.wz-noscript a {
  color: var(--accent-ink);
  font-weight: 800;
}

/* Supporting content under the wizard */
.booking-extra {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}
.booking-how {
  display: grid;
  gap: 16px;
}
.how-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.how-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--teal);
  border-radius: 12px;
}
.how-ic i {
  width: 22px;
  height: 22px;
}
.how-card h2 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}
.how-card ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 7px;
  color: var(--muted);
}
.how-card ol li {
  padding-left: 4px;
}
.booking-faq h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}
.booking-faq details {
  padding: 14px 16px;
  margin-bottom: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.booking-faq summary {
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.booking-faq summary::-webkit-details-marker {
  display: none;
}
.booking-faq summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-weight: 700;
}
.booking-faq details[open] summary::after {
  content: "\2013";
}
.booking-faq details p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* Toast */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Wider screens: two-up where it helps */
@media (min-width: 600px) {
  .wz-grid2 {
    grid-template-columns: 1fr 1fr;
  }
  .wz-modes {
    grid-template-columns: 1fr 1fr;
  }
  .wz-tiles-2 {
    grid-template-columns: 1fr 1fr;
  }
  .booking-how {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 760px) {
  .wz-cards {
    grid-template-columns: 1fr 1fr;
  }
  .wz-tiles {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* ======================================================================
   Small-screen polish (phones ≤ 600px) — mobile-friendliness pass
   ====================================================================== */
@media (max-width: 600px) {
  /* Reclaim vertical space from the sticky header */
  .site-header {
    padding: 10px 14px;
    gap: 14px;
  }
  /* Filter chips: comfortable 44px tap target */
  .category-tabs button {
    min-height: 44px;
  }
  /* Keep section anchors clear of the (now shorter) sticky header */
  :where(section, article, div, main)[id] {
    scroll-margin-top: 72px;
  }
  /* Oversized decorative step numbers shouldn't crowd card text */
  .step-number {
    font-size: 2rem;
  }
  /* Price rows stack cleanly if a label + value are both long */
  .price-row {
    gap: 4px 16px;
  }
}

/* Extra-narrow phones (≤ 380px): trim side gutters a touch */
@media (max-width: 380px) {
  .content-page {
    width: calc(100% - 24px);
  }
  .wizard-card {
    padding: 16px 14px;
  }
}

/* Photo credits page */
.credit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 6px;
}
.credit-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.credit-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.credit-card figcaption {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
}
.credit-card figcaption strong {
  font-size: 1rem;
}
.credit-card figcaption span {
  color: var(--muted);
  font-size: 0.85rem;
}
.credit-card a {
  color: var(--accent-ink);
  font-weight: 700;
}

/* Booking location step — live PDOK address preview */
.wz-address {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
}
.wz-addr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
}
.wz-addr-row > i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.wz-addr-text {
  display: grid;
  gap: 1px;
}
.wz-addr-text small {
  color: var(--muted);
  font-weight: 600;
}
.wz-address-idle .wz-addr-row,
.wz-address-loading .wz-addr-row {
  color: var(--muted);
}
.wz-address-found {
  border-color: var(--teal);
  background: color-mix(in srgb, var(--teal) 9%, var(--surface));
}
.wz-addr-found {
  color: var(--ink);
}
.wz-addr-found > i:first-child {
  color: var(--teal);
}
.wz-addr-ok {
  margin-left: auto;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  padding: 2px;
  width: 20px !important;
  height: 20px !important;
}
.wz-address-notfound {
  border-color: #f0b8af;
  background: #fdeeeb;
}
:root[data-theme="dark"] .wz-address-notfound {
  border-color: rgba(233, 95, 78, 0.4);
  background: rgba(191, 63, 49, 0.16);
}
.wz-addr-warn {
  color: #8a2a1e;
}
:root[data-theme="dark"] .wz-addr-warn {
  color: #ffd9d2;
}
.wz-addr-loading i {
  animation: wz-spin 0.9s linear infinite;
}
@keyframes wz-spin {
  to { transform: rotate(360deg); }
}

/* Booking address mini-map (Leaflet + OpenStreetMap) */
.wz-map {
  position: relative;
  height: 150px;
  margin-top: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  z-index: 0;
}
.wz-map .leaflet-container {
  height: 100%;
  width: 100%;
  font: inherit;
  background: var(--surface-2);
}
/* Cover the map with a loading hint until its tiles have actually loaded,
   so the address shows immediately but the map only appears when ready. */
.wz-map:not(.is-ready)::after {
  content: "Kaart laden\2026";
  position: absolute;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.wz-pin {
  filter: drop-shadow(0 3px 4px rgba(15, 25, 22, 0.4));
}
.wz-map .leaflet-control-zoom a {
  color: var(--ink);
}
.wz-map .leaflet-bar a {
  background: var(--surface);
  border-color: var(--line);
}

/* ======================================================================
   Footer popular services + HTML sitemap page
   ====================================================================== */
.footer-services {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-services h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-services a {
  display: inline-block;
  padding: 6px 13px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.footer-services a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.footer-services .footer-all {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  font-weight: 800;
}
.footer-services .footer-all:hover {
  background: var(--coral-dark);
}

.sitemap-page .sitemap-h2 {
  margin: 34px 0 0;
  font-size: 1.5rem;
}
.sitemap-main .sm-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.sitemap-main .sm-pages a {
  display: inline-block;
  padding: 7px 13px;
  color: var(--accent-ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.sitemap-main .sm-pages a:hover {
  border-color: var(--teal);
}
.sitemap-cat {
  margin-top: 26px;
}
.sitemap-cat > h2 {
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
  font-size: 1.25rem;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px 26px;
}
.sm-service-link {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.02rem;
}
.sm-service-link:hover {
  color: var(--teal);
}
.sm-tasks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
.sm-tasks a {
  color: var(--muted);
  font-size: 0.9rem;
}
.sm-tasks a:hover {
  color: var(--teal);
}

/* Booking inline date picker (calendar) */
.wz-cal {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.wz-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.wz-cal-title {
  font-weight: 800;
  text-transform: capitalize;
}
.wz-cal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.wz-cal-nav:hover:not(:disabled) {
  background: var(--surface-2);
  border-color: var(--teal);
}
.wz-cal-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.wz-cal-nav i {
  width: 18px;
  height: 18px;
}
.wz-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.wz-cal-dow {
  padding: 4px 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
}
.wz-cal-empty {
  aspect-ratio: 1;
}
.wz-cal-day {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  min-height: 40px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.wz-cal-day:hover:not(:disabled) {
  background: var(--surface-2);
}
.wz-cal-day:disabled {
  color: var(--muted);
  opacity: 0.4;
  cursor: not-allowed;
}
.wz-cal-day.is-today:not(.is-sel) {
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.wz-cal-day.is-sel {
  color: #fff;
  background: var(--teal);
  font-weight: 800;
}
.wz-cal-day:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}
/* Order badge on a chosen calendar day (shows pick order: 1, 2, 3…). */
.wz-cal-num {
  position: absolute;
  top: 2px;
  right: 3px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--teal);
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1;
}

/* Selected-dates summary below the calendar. */
.wz-cal-selected {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 12px 0 0;
}
.wz-cal-selected:empty {
  display: none;
}
.wz-date-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.wz-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px 6px 6px;
  border: 1.5px solid var(--teal);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--accent-ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.wz-date-chip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}
.wz-date-chip i {
  width: 14px;
  height: 14px;
  opacity: 0.65;
}
.wz-date-chip:hover {
  background: #fdecea;
  border-color: var(--coral, #e0533f);
  color: var(--coral, #e0533f);
}
.wz-date-chip:hover i {
  opacity: 1;
}
.wz-cal-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--muted, #6b7280);
}
.wz-cal-hint i {
  width: 16px;
  height: 16px;
}
.wz-cal-hint.is-warn {
  color: #b45309;
}
.wz-cal-hint.is-ok {
  color: #0a7d56;
}

/* "kies er minimaal 2" note next to the field label. */
.wz-label-req {
  font-weight: 700;
  color: var(--teal);
}
.wz-help {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 4px 0 12px;
  color: var(--muted, #6b7280);
  font-size: 0.88rem;
  line-height: 1.45;
}
.wz-help i {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
}

/* ======================================================================
   Booking wizard UX/UI polish
   ====================================================================== */
/* Clickable step progress */
.wz-steps {
  display: flex;
  align-items: center;
  margin: 14px 0 6px;
  padding: 0;
  list-style: none;
}
.wz-step {
  flex: 1;
  display: flex;
  align-items: center;
}
.wz-step:not(:first-child)::before {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--line);
}
.wz-step.is-done::before,
.wz-step.is-current::before {
  background: var(--teal);
}
.wz-step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0;
}
button.wz-step-dot {
  cursor: pointer;
  transition: transform 0.12s ease;
}
button.wz-step-dot:hover {
  transform: scale(1.1);
}
.wz-step.is-done .wz-step-dot {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.wz-step.is-done .wz-step-dot i {
  width: 15px;
  height: 15px;
}
.wz-step.is-current .wz-step-dot {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 92, 86, 0.14);
}

/* Smooth step transitions */
.wz-body {
  animation: wz-step-in 0.26s ease both;
}
@keyframes wz-step-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}

/* Service search: result count */
.wz-result-count {
  margin: 2px 0 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Confirmation: what happens next */
.wz-next {
  width: 100%;
  text-align: left;
  margin-top: 2px;
  padding: 16px;
  background: var(--surface-2);
  border-radius: 12px;
}
.wz-next-title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 0.95rem;
}
.wz-next ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wz-next li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.wz-next-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--teal);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.wz-next-ic i {
  width: 19px;
  height: 19px;
}
.wz-next li > span:last-child {
  display: grid;
  gap: 1px;
  color: var(--muted);
  font-size: 0.9rem;
}
.wz-next li strong {
  color: var(--ink);
  font-size: 0.98rem;
}

/* Confirmation check pop */
.wz-done-mark {
  animation: wz-pop 0.42s cubic-bezier(0.2, 0.9, 0.3, 1.4) both;
}
@keyframes wz-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* Sticky action bar on phones so Vorige/Volgende are always reachable */
@media (max-width: 600px) {
  .wz-actions {
    position: sticky;
    bottom: 0;
    margin-top: 22px;
    padding: 12px 0 calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 18px rgba(15, 25, 22, 0.06);
    z-index: 4;
  }
  .wz-actions.wz-actions-center {
    position: static;
    box-shadow: none;
    border-top: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wz-body,
  .wz-done-mark,
  button.wz-step-dot {
    animation: none;
    transition: none;
  }
}

/* ============ City overview: live map as page background ============ */
body.has-city-map {
  background: var(--surface-2);
}
/* Lift static page content above the fixed (positioned) background map. */
body.has-city-map .booking-page,
body.has-city-map .site-footer,
body.has-city-map .toast {
  position: relative;
  z-index: 1;
}
.city-map-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.city-map-bg.is-ready {
  opacity: 1;
}
.city-map-bg .leaflet-container {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
  filter: grayscale(0.12);
}
.city-map-bg .leaflet-control-attribution {
  font-size: 10px;
  opacity: 0.7;
}
/* Brand-tinted scrim so the overlaid content stays readable. */
.city-map-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    125% 95% at 50% 0%,
    color-mix(in srgb, var(--paper) 28%, transparent) 0%,
    color-mix(in srgb, var(--paper) 74%, transparent) 100%
  );
}
/* Frosted panel that floats the overview text over the map. */
.city-overview {
  position: relative;
  background: var(--paper);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 38px);
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.55);
}
.city-overview .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.city-overview .eyebrow i {
  width: 15px;
  height: 15px;
}

/* ============ Per-klus AI-generated image ============ */
.klus-shot {
  position: relative;
  margin: 20px 0 10px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 44px -30px rgba(0, 0, 0, 0.5);
}
/* Instant blurred category photo behind the AI image while it generates. */
.klus-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ph) center / cover no-repeat;
  filter: blur(12px) brightness(0.82) saturate(0.9);
  transform: scale(1.1);
}
/* Shimmer sweep while the image is still loading. */
.klus-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: klus-shimmer 1.4s linear infinite;
}
.klus-shot.is-loaded::after,
.klus-shot.is-error::after {
  display: none;
}
.klus-shot img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.klus-shot.is-loaded img {
  opacity: 1;
}
.klus-shot.is-error img {
  display: none; /* keep the blurred category photo as a graceful fallback */
}
.klus-shot figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: rgba(7, 63, 59, 0.74);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.klus-shot figcaption i {
  width: 14px;
  height: 14px;
}
@keyframes klus-shimmer {
  from { background-position: 220% 0; }
  to { background-position: -220% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .klus-shot::after { animation: none; }
}

/* AI image used as the klus-page hero (with instant blurred category placeholder) */
.dienst-hero-media.is-ai {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--surface-2);
}
.dienst-hero-media.is-ai::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ph) center / cover no-repeat;
  filter: blur(12px) brightness(0.82) saturate(0.9);
  transform: scale(1.1);
}
.dienst-hero-media.is-ai::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: klus-shimmer 1.4s linear infinite;
}
.dienst-hero-media.is-ai.is-loaded::after,
.dienst-hero-media.is-ai.is-error::after {
  display: none;
}
.dienst-hero-media.is-ai img {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.dienst-hero-media.is-ai.is-loaded img {
  opacity: 1;
}
.dienst-hero-media.is-ai .ai-cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(7, 63, 59, 0.74);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.dienst-hero-media.is-ai .ai-cap i {
  width: 14px;
  height: 14px;
}

/* ============ Brand slogans & branding blocks ============ */
/* Hero slogan pill (on the dark hero) */
.hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 9px 16px;
  background: rgba(233, 95, 78, 0.16);
  border: 1px solid rgba(233, 95, 78, 0.4);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-slogan i { width: 17px; height: 17px; color: var(--coral); flex: none; }
.hero-slogan strong { color: var(--coral); }

/* Full-bleed teal brand band with slogan + pillars */
.brand-band {
  width: 100%;
  padding: clamp(48px, 7vw, 80px) max(18px, calc((100vw - var(--max)) / 2));
  background: #073f3b;
  color: #fff;
  text-align: center;
}
.brand-band-slogan {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.brand-band-slogan em { font-style: normal; color: var(--coral); }
.brand-band-sub {
  margin: 0 auto 38px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}
.brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}
.brand-pillars > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}
.brand-pillars i { width: 30px; height: 30px; color: var(--coral); }
.brand-pillars strong { font-size: 1.06rem; font-weight: 800; }
.brand-pillars span { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; line-height: 1.5; }
@media (max-width: 760px) { .brand-pillars { grid-template-columns: 1fr; } }

/* Coral closing CTA banner with slogan */
.brand-cta-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 40px auto 84px;
  padding: clamp(40px, 6vw, 66px) clamp(22px, 5vw, 56px);
  background: var(--coral);
  color: #fff;
  border-radius: 26px;
  text-align: center;
}
.brand-cta-band .eyebrow { color: rgba(255, 255, 255, 0.88); }
.brand-cta-band h2 {
  margin: 4px 0 12px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -0.02em;
}
.brand-cta-band h2 em { font-style: normal; color: #073f3b; }
.brand-cta-band p { margin: 0 auto 26px; max-width: 560px; color: rgba(255, 255, 255, 0.92); font-size: 1.04rem; }
.brand-cta-band .primary-button { background: #fff; color: #073f3b; border-color: #fff; }
.brand-cta-band .primary-button:hover { background: #073f3b; color: #fff; }

/* Brand slogan pill on dienst pages (uses the per-category --accent) */
.dienst-hero-slogan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 18px;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--accent) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
}
.dienst-hero-slogan i { width: 16px; height: 16px; flex: none; }
.brand-band.is-compact { padding-block: clamp(40px, 5vw, 60px); border-radius: 24px; width: min(var(--max), calc(100% - 36px)); margin: 30px auto; }

/* ============ City highlight map (on /{stad}/* dienst & klus pages) ============ */
.city-map-card {
  position: relative;
  height: 360px;
  margin: 10px 0 4px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, 0.5);
}
.city-map-card .leaflet-container {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  background: var(--surface-2);
  font: inherit;
}
.city-map-card.is-ready .leaflet-container {
  opacity: 1;
}
/* Permanent city-name label on the pin */
.city-pin-label {
  background: #073f3b;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 5px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
.city-pin-label.leaflet-tooltip-top::before {
  border-top-color: #073f3b;
}
