/* ============================================================
   Loodgieter Naaldwijk — Design System
   Single stylesheet. Mobile-first. System fonts for speed.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --c-primary:        #1565C0;
  --c-primary-light:  #42A5F5;
  --c-primary-dark:   #0D47A1;

  --c-urgency:        #D32F2F;
  --c-urgency-light:  #EF5350;
  --c-urgency-dark:   #B71C1C;

  --c-secondary:      #E65100;
  --c-secondary-light:#FF9800;

  --c-ink:            #1A1A1A;
  --c-ink-soft:       #2E2E2E;
  --c-mute:           #616161;
  --c-line:           #E5E7EB;
  --c-surface:        #F5F5F5;
  --c-surface-warm:   #FAF7F2;
  --c-white:          #FFFFFF;

  --c-success:        #2E7D32;
  --c-success-light:  #E8F5E9;
  --c-error:          #C62828;

  /* Type stack — system-first per brand-guidelines */
  --f-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto,
            "Helvetica Neue", Arial, sans-serif;
  --f-serif: "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman",
             "Droid Serif", Times, serif;

  /* Scale (1.25 — major third) */
  --t-xs:   0.75rem;   /* 12 */
  --t-sm:   0.875rem;  /* 14 */
  --t-base: 1rem;      /* 16 */
  --t-md:   1.125rem;  /* 18 */
  --t-lg:   1.375rem;  /* 22 */
  --t-xl:   1.75rem;   /* 28 */
  --t-2xl:  2.25rem;   /* 36 */
  --t-3xl:  2.875rem;  /* 46 */
  --t-4xl:  3.625rem;  /* 58 */

  /* Spacing (8px grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 40px;
  --s-8: 56px;
  --s-9: 72px;
  --s-10: 96px;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-pill: 999px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(16, 24, 40, 0.06);
  --sh-2: 0 4px 14px rgba(16, 24, 40, 0.08);
  --sh-3: 0 18px 40px -12px rgba(13, 71, 161, 0.25);
  --sh-red: 0 10px 24px -8px rgba(211, 47, 47, 0.45);

  /* Layout */
  --container: 1180px;
  --header-h: 72px;
  --mobile-cta-h: 64px;

  --ease: cubic-bezier(.2,.6,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { padding-left: 1.25em; }
figure { margin: 0; }

/* Focus — high visibility, never invisible */
:focus-visible {
  outline: 3px solid var(--c-primary-light);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-sans);
  color: var(--c-ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
  font-weight: 800;
}
h1 { font-size: var(--t-3xl); letter-spacing: -0.025em; font-weight: 900; }
h2 { font-size: var(--t-2xl); letter-spacing: -0.02em; }
h3 { font-size: var(--t-xl); }
h4 { font-size: var(--t-lg); font-weight: 700; }

p  { margin: 0 0 var(--s-4); max-width: 68ch; }
.lead { font-size: var(--t-md); color: var(--c-ink-soft); line-height: 1.55; }

@media (min-width: 900px) {
  h1 { font-size: var(--t-4xl); }
  h2 { font-size: var(--t-3xl); }
  h3 { font-size: var(--t-2xl); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: currentColor;
  display: inline-block;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-8) 0; }
.section-alt { background: var(--c-surface); }
.section-dark { background: var(--c-primary-dark); color: var(--c-white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--c-white); }

@media (min-width: 900px) {
  .section { padding: var(--s-10) 0; }
}

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 700px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 980px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.stack > * + * { margin-top: var(--s-4); }
.stack-lg > * + * { margin-top: var(--s-6); }

.center-text { text-align: center; }
.center-text p { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-weight: 700;
  font-size: var(--t-md);
  padding: 14px 22px;
  border-radius: var(--r-sm);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), color .2s var(--ease);
  line-height: 1;
  min-height: 52px;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-phone svg { width: 22px; height: 22px; }

.btn-phone {
  background: var(--c-urgency);
  color: var(--c-white);
  box-shadow: var(--sh-red);
  padding: 16px 26px;
  font-size: var(--t-lg);
}
.btn-phone:hover { background: var(--c-urgency-light); color: var(--c-white); box-shadow: 0 14px 30px -8px rgba(211,47,47,0.55); }
.btn-phone .phone-num { letter-spacing: 0.01em; }

.btn-offerte {
  background: var(--c-secondary);
  color: var(--c-white);
}
.btn-offerte:hover { background: var(--c-secondary-light); color: var(--c-white); }

.btn-ghost {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  padding: 12px 20px;
}
.btn-ghost:hover { background: var(--c-primary); color: var(--c-white); }

.btn-light {
  background: var(--c-white);
  color: var(--c-primary-dark);
}
.btn-light:hover { background: var(--c-surface); color: var(--c-primary-dark); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  backdrop-filter: saturate(180%) blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--s-5);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--c-ink);
  font-weight: 800;
}
.brand:hover { text-decoration: none; color: var(--c-primary); }
.brand-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--c-white);
  box-shadow: var(--sh-2);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-logo { height: 48px; width: auto; display: block; }
@media (min-width: 700px) { .brand-logo { height: 54px; } }
.brand-logo-footer { height: 56px; background: #fff; padding: 8px 12px; border-radius: var(--r-sm); }
.brand-text { line-height: 1.05; }
.brand-text .big { display: block; font-size: var(--t-md); letter-spacing: -0.01em; }
.brand-text .small { display: block; font-size: var(--t-xs); color: var(--c-mute); font-weight: 500; }

/* ---------- Photo frame (replaces media-block for real photos) ---------- */
.photo-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: var(--sh-3);
  background: var(--c-surface);
  aspect-ratio: 4 / 5;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame.wide { aspect-ratio: 16 / 10; }
.photo-frame.square { aspect-ratio: 1 / 1; }

.photo-frame .photo-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(26, 26, 26, 0.82);
  color: var(--c-white);
  backdrop-filter: blur(6px);
  font-size: var(--t-xs);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  letter-spacing: 0.03em;
}
.photo-frame .photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: var(--c-white);
  padding: 40px 20px 18px;
  font-size: var(--t-sm);
  font-weight: 600;
}

.nav {
  display: none;
  align-items: center;
  gap: var(--s-6);
}
.nav a {
  color: var(--c-ink);
  font-size: var(--t-sm);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--c-primary); border-color: var(--c-primary); text-decoration: none; }
.nav a.active { color: var(--c-primary); border-color: var(--c-primary); }

.header-cta { display: none; }
.header-mobile-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-urgency);
  font-weight: 800;
  font-size: var(--t-sm);
  padding: 8px 12px;
  border: 2px solid var(--c-urgency);
  border-radius: var(--r-sm);
}
.header-mobile-call:hover { background: var(--c-urgency); color: var(--c-white); text-decoration: none; }

@media (min-width: 980px) {
  .nav { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .header-mobile-call { display: none; }
}

.nav-toggle {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--c-ink);
  background: var(--c-surface);
}
@media (min-width: 980px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-nav {
  display: none;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-4) var(--s-5) var(--s-6);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li + li { border-top: 1px solid var(--c-line); }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  color: var(--c-ink);
  font-weight: 600;
  font-size: var(--t-md);
}
.mobile-nav a:hover { color: var(--c-primary); text-decoration: none; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--c-urgency);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px var(--s-4);
  font-weight: 800;
  font-size: var(--t-md);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  z-index: 60;
  text-decoration: none;
}
.mobile-cta:hover { color: var(--c-white); text-decoration: none; background: var(--c-urgency-light); }
.mobile-cta svg { width: 22px; height: 22px; }
.mobile-cta .phone-big { font-size: var(--t-lg); letter-spacing: 0.01em; }

body.has-mobile-cta { padding-bottom: calc(var(--mobile-cta-h) + 12px); }
@media (min-width: 980px) {
  .mobile-cta { display: none; }
  body.has-mobile-cta { padding-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(66, 165, 245, 0.18), transparent 60%),
    radial-gradient(700px 460px at 95% 90%, rgba(13, 71, 161, 0.08), transparent 60%),
    linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%);
  padding: var(--s-8) 0 var(--s-9);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,71,161,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,71,161,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at top left, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top left, black 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 980px) {
  .hero { padding: var(--s-10) 0; }
  .hero-inner { grid-template-columns: 1.2fr 1fr; gap: var(--s-8); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 6px 14px 6px 8px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-ink);
  box-shadow: var(--sh-1);
  margin-bottom: var(--s-5);
}
.hero-badge .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(46, 125, 50, 0); }
}

.hero h1 { margin-bottom: var(--s-4); }
.hero h1 .hl { color: var(--c-primary); }
.hero .lead { max-width: 56ch; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin: var(--s-6) 0 var(--s-5);
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-6);
  color: var(--c-ink-soft);
  font-size: var(--t-sm);
  font-weight: 600;
}
.hero-micro span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-micro svg { width: 18px; height: 18px; color: var(--c-success); }

/* Hero visual card */
.hero-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--sh-3);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-line);
  margin-bottom: var(--s-4);
}
.hero-card-header .title { font-weight: 800; font-size: var(--t-md); }
.hero-card-header .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--t-xs); color: var(--c-success); font-weight: 700;
}
.hero-card-header .live .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-success);
  animation: pulse 2s var(--ease) infinite;
}
.hero-card-row {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--c-line);
}
.hero-card-row:last-child { border-bottom: 0; }
.hero-card-row .icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: grid; place-items: center;
  background: rgba(21, 101, 192, 0.08); color: var(--c-primary);
  flex: 0 0 auto;
}
.hero-card-row .icon svg { width: 22px; height: 22px; }
.hero-card-row .label { font-weight: 700; font-size: var(--t-sm); }
.hero-card-row .sub { font-size: var(--t-xs); color: var(--c-mute); }
.hero-card-row .time {
  margin-left: auto; font-size: var(--t-xs); color: var(--c-mute); font-weight: 600;
}

.hero-card-tag {
  position: absolute;
  top: -14px; right: -14px;
  background: var(--c-success);
  color: var(--c-white);
  font-weight: 800;
  font-size: var(--t-xs);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-2);
  transform: rotate(6deg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--c-ink);
  color: var(--c-white);
  padding: var(--s-5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4) var(--s-5);
  align-items: center;
}
@media (min-width: 700px) { .trust-strip .container { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .trust-strip .container { grid-template-columns: repeat(6, 1fr); } }

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--t-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.trust-item svg { width: 22px; height: 22px; color: var(--c-secondary-light); flex: 0 0 auto; }
.trust-item strong { display: block; color: var(--c-white); font-weight: 800; font-size: var(--t-base); }
.trust-item .small { display: block; font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ---------- Cards ---------- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: rgba(21, 101, 192, 0.3);
}

/* Service card */
.svc-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  text-decoration: none;
  color: inherit;
  padding: var(--s-5) var(--s-5) var(--s-4);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  position: relative;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: var(--c-primary-light);
  text-decoration: none;
  color: inherit;
}
.svc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: rgba(21, 101, 192, 0.08);
  color: var(--c-primary);
  display: grid; place-items: center;
  margin-bottom: var(--s-2);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card.urgent .svc-icon { background: rgba(211, 47, 47, 0.08); color: var(--c-urgency); }
.svc-card h3 { font-size: var(--t-lg); margin: 0; }
.svc-card p { font-size: var(--t-sm); color: var(--c-mute); margin: 0; }
.svc-card .svc-link {
  margin-top: auto;
  font-size: var(--t-sm);
  color: var(--c-primary);
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
  padding-top: var(--s-2);
}
.svc-card .svc-link::after { content: "→"; transition: transform .2s var(--ease); }
.svc-card:hover .svc-link::after { transform: translateX(3px); }

.svc-card .urgent-flag {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--c-urgency);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- CTA block ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 100%);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(255,255,255,0.15), transparent 60%),
    radial-gradient(400px 200px at 90% 100%, rgba(255,152,0,0.12), transparent 70%);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 { color: var(--c-white); margin-bottom: var(--s-3); }
.cta-block p { max-width: 58ch; margin-left: auto; margin-right: auto; color: rgba(255,255,255,0.92); }
.cta-block .cta-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3);
  margin-top: var(--s-5);
}
.cta-block .micro {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.85);
  margin-top: var(--s-4);
  display: flex; justify-content: center; flex-wrap: wrap; gap: var(--s-4);
}
.cta-block .micro span { display: inline-flex; align-items: center; gap: 6px; }
.cta-block .micro svg { width: 18px; height: 18px; color: var(--c-secondary-light); }

@media (min-width: 900px) {
  .cta-block { padding: var(--s-9) var(--s-8); }
}

/* ---------- Guarantee block ---------- */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .guarantee-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--s-8); }
}
.guarantee-shield {
  position: relative;
  background: linear-gradient(160deg, var(--c-success) 0%, #1B5E20 100%);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-5);
  text-align: center;
  box-shadow: var(--sh-2);
}
.guarantee-shield .seal {
  width: 120px; height: 120px; margin: 0 auto var(--s-4);
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-success);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,0.3), var(--sh-2);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.05;
  text-align: center;
}
.guarantee-shield .seal span { display: block; }
.guarantee-shield .seal .big { font-size: 30px; letter-spacing: -0.02em; }
.guarantee-shield h3 { color: var(--c-white); margin-bottom: var(--s-2); font-size: var(--t-xl); }
.guarantee-shield p { color: rgba(255,255,255,0.92); margin: 0 auto; max-width: 36ch; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  padding: var(--s-2) 0;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px; height: 22px; margin-top: 2px;
  border-radius: 50%;
  background: var(--c-success-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7D32' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Reviews ---------- */
.review-header {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-6);
}
.review-score {
  display: flex; align-items: center; gap: var(--s-4);
}
.review-score .num {
  font-size: var(--t-3xl); font-weight: 900; color: var(--c-ink); line-height: 1;
}
.review-score .stars { color: var(--c-secondary-light); font-size: 20px; letter-spacing: 2px; }
.review-score .meta { font-size: var(--t-sm); color: var(--c-mute); }
.review-score .meta strong { color: var(--c-ink); display: block; }

.review-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  height: 100%;
}
.review-card .stars { color: var(--c-secondary-light); font-size: 16px; letter-spacing: 2px; }
.review-card blockquote { margin: 0; font-size: var(--t-md); line-height: 1.5; color: var(--c-ink-soft); }
.review-card blockquote::before { content: "“"; font-family: var(--f-serif); font-size: 40px; line-height: 0; color: var(--c-primary-light); vertical-align: -10px; margin-right: 4px; }
.review-card .who {
  margin-top: auto;
  display: flex; align-items: center; gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-line);
}
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary-light), var(--c-primary));
  color: var(--c-white);
  display: grid; place-items: center;
  font-weight: 800; font-size: var(--t-sm);
}
.review-card .who .name { font-weight: 700; font-size: var(--t-sm); }
.review-card .who .place { font-size: var(--t-xs); color: var(--c-mute); }

/* ---------- Service page hero ---------- */
.svc-hero {
  background:
    radial-gradient(700px 400px at 10% 10%, rgba(66,165,245,0.18), transparent 60%),
    linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%);
  padding: var(--s-8) 0 var(--s-7);
}
.svc-hero .breadcrumb {
  font-size: var(--t-sm);
  color: var(--c-mute);
  margin-bottom: var(--s-4);
}
.svc-hero .breadcrumb a { color: var(--c-mute); }
.svc-hero .breadcrumb a:hover { color: var(--c-primary); }
.svc-hero-grid {
  display: grid; gap: var(--s-6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .svc-hero { padding: var(--s-9) 0; }
  .svc-hero-grid { grid-template-columns: 1.3fr 1fr; gap: var(--s-8); }
}
.svc-hero h1 { font-size: var(--t-2xl); }
@media (min-width: 900px) { .svc-hero h1 { font-size: var(--t-3xl); } }

/* ---------- Process steps ---------- */
.steps {
  display: grid; gap: var(--s-5);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  position: absolute;
  top: -14px; left: var(--s-5);
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 900;
  font-size: var(--t-sm);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.step h3 { font-size: var(--t-md); margin: var(--s-2) 0 var(--s-2); }
.step p { font-size: var(--t-sm); color: var(--c-mute); margin: 0; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: var(--s-3); }
.faq details {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] {
  border-color: var(--c-primary-light);
  box-shadow: var(--sh-1);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--c-ink);
  font-size: var(--t-md);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-primary);
  display: grid; place-items: center;
  font-size: 20px; font-weight: 700;
  line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.faq details[open] summary::after {
  content: "−";
  background: var(--c-primary); color: var(--c-white);
}
.faq details p { margin: var(--s-3) 0 0; color: var(--c-ink-soft); }

/* ---------- Werkgebied ---------- */
.werk {
  display: grid; gap: var(--s-6);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .werk { grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center; }
}
.werk-map {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.werk-map .pin {
  position: absolute;
  width: 18px; height: 18px;
  background: var(--c-urgency);
  border-radius: 50%;
  border: 3px solid var(--c-white);
  box-shadow: var(--sh-2);
  transform: translate(-50%, -50%);
}
.werk-map .pin.big {
  width: 26px; height: 26px;
  background: var(--c-primary);
}
.werk-map .pin.big::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: ring 2.2s var(--ease) infinite;
}
@keyframes ring {
  0% { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.werk-map .label {
  position: absolute;
  transform: translate(-50%, -160%);
  font-size: var(--t-xs);
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-white);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  border: 1px solid var(--c-line);
  white-space: nowrap;
}
.werk-map svg.roads {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.4;
}

.werk-places {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  margin-top: var(--s-4);
}
.werk-places span {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: var(--t-sm);
  font-weight: 600;
}

/* ---------- Forms ---------- */
.form {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: var(--s-6);
  box-shadow: var(--sh-1);
}
.field { margin-bottom: var(--s-4); }
.field label {
  display: block;
  font-weight: 700;
  font-size: var(--t-sm);
  margin-bottom: 6px;
  color: var(--c-ink);
}
.field .helper { font-size: var(--t-xs); color: var(--c-mute); margin-top: 4px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: var(--t-base);
  color: var(--c-ink);
  background: var(--c-white);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-xs);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.field.has-error input,
.field.has-error textarea { border-color: var(--c-error); }
.field .error {
  display: block;
  color: var(--c-error);
  font-size: var(--t-xs);
  font-weight: 600;
  margin-top: 4px;
}
.form-note { font-size: var(--t-xs); color: var(--c-mute); margin-top: var(--s-3); }
.form-success {
  background: var(--c-success-light);
  border: 1px solid var(--c-success);
  color: var(--c-success);
  padding: var(--s-4);
  border-radius: var(--r-md);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.82);
  padding: var(--s-9) 0 var(--s-6);
  font-size: var(--t-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.site-footer h4 {
  color: var(--c-white);
  font-size: var(--t-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-4);
}
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--c-white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; }
.site-footer .brand .brand-text .big { color: var(--c-white); }
.site-footer .brand .brand-text .small { color: rgba(255,255,255,0.6); }

.footer-meta {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  justify-content: space-between;
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.6);
}

.nap {
  display: flex; flex-direction: column; gap: 6px;
}
.nap .row { display: flex; align-items: flex-start; gap: var(--s-2); }
.nap .row svg { width: 18px; height: 18px; color: var(--c-primary-light); flex: 0 0 auto; margin-top: 2px; }

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

.divider {
  height: 1px; background: var(--c-line); margin: var(--s-6) 0;
}

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--t-xs); font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-pill);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.tag-urgent { background: rgba(211, 47, 47, 0.1); color: var(--c-urgency); }
.tag-guarantee { background: rgba(46, 125, 50, 0.1); color: var(--c-success); }
.tag-local { background: rgba(21, 101, 192, 0.1); color: var(--c-primary); }

/* Price ribbon */
.price-note {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 10px 14px;
  background: var(--c-success-light);
  color: var(--c-success);
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: var(--t-sm);
}

/* Inline image block (used on service page) */
.media-block {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(21,101,192,0.12), rgba(66,165,245,0.05)),
    var(--c-surface);
  display: grid; place-items: center;
  color: var(--c-primary-dark);
  font-weight: 700;
  text-align: center;
  padding: var(--s-5);
}

/* Printable phone label */
.phone-label {
  font-weight: 800;
  color: var(--c-urgency);
  font-size: var(--t-xl);
  letter-spacing: 0.02em;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
