:root {
  color-scheme: light;
  --bg: #f3f1ec;
  --surface: #ffffff;
  --surface-alt: #ece9e2;
  --surface-soft: #f8f5ef;
  --text: #18191c;
  --text-soft: #5f646b;
  --text-muted: #8f9499;
  --line: rgba(24, 25, 28, 0.1);
  --line-strong: rgba(24, 25, 28, 0.18);
  --accent: #dd8c28;
  --accent-deep: #a85a11;
  --accent-soft: rgba(221, 140, 40, 0.14);
  --dark: #16171a;
  --dark-soft: #232529;
  --dark-card: rgba(255, 255, 255, 0.05);
  --dark-text: #f8f4ee;
  --dark-muted: rgba(248, 244, 238, 0.72);
  --shadow-sm: 0 10px 24px rgba(20, 22, 25, 0.08);
  --shadow-md: 0 20px 50px rgba(20, 22, 25, 0.12);
  --shadow-lg: 0 30px 70px rgba(20, 22, 25, 0.18);
  --shadow-accent: 0 18px 42px rgba(221, 140, 40, 0.24);
  --radius-sm: 0.9rem;
  --radius-md: 1.4rem;
  --radius-lg: 2rem;
  --radius-xl: 2.8rem;
  --radius-pill: 999px;
  --container: min(1180px, calc(100vw - 2rem));
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --transition: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(221, 140, 40, 0.08), transparent 32%),
    linear-gradient(180deg, #f6f4ef 0%, #f1eee8 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
section[id] { scroll-margin-top: 6rem; }

:focus-visible {
  outline: 3px solid rgba(221, 140, 40, 0.35);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 200;
  background: var(--dark);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

.container { width: var(--container); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section-surface {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64)),
    var(--surface-alt);
}
.section-dark {
  color: var(--dark-text);
  background:
    linear-gradient(135deg, rgba(221, 140, 40, 0.16), transparent 38%),
    linear-gradient(180deg, #141518, #1d2024);
}
.section-accent {
  color: var(--dark-text);
  background:
    radial-gradient(circle at top right, rgba(221, 140, 40, 0.28), transparent 26%),
    linear-gradient(180deg, #1b1d20, #15161a);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.8rem;
}
.section-heading-center {
  margin-inline: auto;
  text-align: center;
}
.section-heading h2,
.hero h1,
.cta-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(3rem, 9vw, 6.1rem); }
.section-heading h2,
.cta-copy h2 { font-size: clamp(2.2rem, 6vw, 4rem); }
.section-heading p,
.hero-subtitle,
.service-body p,
.value-card p,
.process-card p,
.review-card p,
.faq-item p,
.contact-copy p,
.calculator-copy p,
.area-card p,
.trust-item span,
.contact-method span,
.project-body p { color: var(--text-soft); }
.section-dark .section-heading p,
.section-dark .value-card p,
.section-accent .calculator-copy p,
.section-accent .calculator-rate-card li,
.section-accent .calculator-disclaimer { color: var(--dark-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}
.eyebrow-light { color: #ffc483; }
.eyebrow-light::before { background: linear-gradient(90deg, #ffb25a, #ffd08d); }

/* ── Buttons ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button-lg { min-height: 3.7rem; padding-inline: 1.6rem; }
.button-block { width: 100%; }
.button-primary {
  color: #fff7ef;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: var(--shadow-accent);
}
.button-primary:hover { box-shadow: 0 24px 44px rgba(221, 140, 40, 0.32); }
.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(24, 25, 28, 0.12);
  box-shadow: var(--shadow-sm);
}
.button-secondary:hover { background: #fff; }
.button-text {
  padding: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  font-weight: 800;
  color: var(--accent-deep);
  background: transparent;
  box-shadow: none;
}
.button-text::after {
  content: "→";
  transition: transform var(--transition);
}
.button-text:hover::after { transform: translateX(4px); }

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: 0.8rem;
  transition: background var(--transition);
}
.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(243, 241, 236, 0.94), rgba(243, 241, 236, 0.58) 82%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5rem;
  padding: 0.75rem 1rem 0.75rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  background: rgba(20, 21, 24, 0.28);
  box-shadow: none;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled .nav-shell {
  border-color: rgba(24, 25, 28, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.brand-word,
.brand-accent {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}
.brand-word { color: #121316; }
.brand-accent { color: var(--accent); }
.site-header:not(.is-scrolled) .brand-word { color: #f7f3ec; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.site-nav a:not(.button) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 700;
}
.site-header.is-scrolled .site-nav a:not(.button) { color: var(--text-soft); }
.site-nav a:not(.button):hover,
.site-header.is-scrolled .site-nav a:not(.button):hover { color: var(--text); }
.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.2rem auto;
  border-radius: 2px;
  background: #fff;
}
.site-header.is-scrolled .nav-toggle {
  border-color: rgba(24, 25, 28, 0.1);
  background: rgba(24, 25, 28, 0.04);
}
.site-header.is-scrolled .nav-toggle span { background: var(--text); }

/* ── Hero (Centered - Afwerkmeesters style) ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  background: #121316;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.5) 0%, rgba(9, 10, 12, 0.35) 50%, rgba(9, 10, 12, 0.7) 100%),
    radial-gradient(circle at top right, rgba(221, 140, 40, 0.18), transparent 40%);
}
.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  padding-top: clamp(6rem, 14vw, 10rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  color: var(--dark-text);
}
.hero-center .eyebrow {
  justify-content: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -0.02em;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  font-style: italic;
}
.accent-word {
  color: var(--accent);
  font-style: italic;
}

/* ── Promo Pill ── */
.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding: 0.6rem 1.4rem 0.6rem 1rem;
  background: rgba(221, 140, 40, 0.25);
  border: 2px solid var(--accent);
  box-shadow: 0 0 15px rgba(221, 140, 40, 0.4);
  border-radius: 99px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: pill-pulse 2.5s infinite;
}
@media (max-width: 768px) {
  .promo-pill { font-size: 0.95rem; padding: 0.5rem 1rem; }
}
.promo-pill strong {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Promo Pill variations for light surfaces */
.section-surface .promo-pill {
  background: rgba(221, 140, 40, 0.15);
  color: var(--text);
  box-shadow: none;
  animation: pill-pulse-light 2.5s infinite;
}
.section-surface .promo-pill strong {
  color: var(--accent-deep);
}
@keyframes pill-pulse-light {
   0% { box-shadow: 0 0 10px rgba(221, 140, 40, 0.2); }
  50% { box-shadow: 0 0 25px rgba(221, 140, 40, 0.5); transform: translateY(-2px); }
 100% { box-shadow: 0 0 10px rgba(221, 140, 40, 0.2); transform: translateY(0); }
}
.promo-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffc483;
  box-shadow: 0 0 0 0 rgba(255, 196, 131, 0.8);
  animation: dot-pulse 1.5s infinite;
}
@keyframes dot-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 196, 131, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(255, 196, 131, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 196, 131, 0); }
}
@keyframes pill-pulse {
  0% { box-shadow: 0 0 15px rgba(221, 140, 40, 0.4); }
  50% { box-shadow: 0 0 35px rgba(221, 140, 40, 0.85); transform: translateY(-2px); }
  100% { box-shadow: 0 0 15px rgba(221, 140, 40, 0.4); transform: translateY(0); }
}

.hero-subtitle {
  max-width: 38rem;
  margin: 1.4rem auto 0;
  font-size: 1.06rem;
  color: rgba(248, 244, 238, 0.82);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin: 2rem 0 0;
}
.hero-actions .button-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.hero-stat {
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  text-align: center;
  min-width: 120px;
}
.hero-stat strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.stat-plus {
  color: var(--accent);
}
.hero-stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.65);
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 11px;
  position: relative;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.3; top: 18px; }
}
.scroll-indicator span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.5);
}

/* ── Stats Strip (after hero) ── */
.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-bottom: var(--section-space);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.6rem 1rem;
  border: 1px solid rgba(24, 25, 28, 0.08);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-sm);
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 0.9rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  color: var(--accent);
}
.stat-block strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.stat-block span {
  margin-top: 0.3rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  font-weight: 600;
}

/* ── Service Cards ── */
.service-grid,
.value-grid,
.process-grid,
.reviews-grid,
.contact-grid,
.area-grid,
.calculator-grid,
.footer-inner,
.cta-band-inner { display: grid; gap: 1.4rem; }
.service-card,
.value-card,
.process-card,
.review-card,
.area-card,
.contact-form,
.contact-panel,
.calculator-card,
.calculator-rate-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}
.service-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.service-body { 
  padding: 1.4rem 1.4rem 1.6rem; 
  display: flex; 
  flex-direction: column; 
  flex: 1; 
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.service-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-body h3,
.value-card h3,
.process-card h3,
.area-card h3,
.review-author strong,
.contact-copy h2,
.calculator-copy h2 { margin: 0 0 0.85rem; }
.service-list {
  margin: 1rem 0 1.2rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}
.service-card .button {
  margin-top: auto;
  align-self: flex-start;
}

/* "Why us" with icons (3x2 grid like afwerkmeesters) */
.section-dark .value-card {
  color: var(--dark-text);
  background: var(--dark-card);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.value-card,
.process-card { padding: 1.35rem; }
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  color: var(--accent);
}
.section-dark .value-icon {
  background: rgba(221, 140, 40, 0.15);
}
.process-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* ── Calculator ── */
.calculator-grid,
.area-grid,
.contact-grid,
.cta-band-inner,
.footer-inner { align-items: start; }
.calculator-copy,
.contact-copy { max-width: 34rem; }
.calculator-card {
  padding: 1.35rem;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 247, 241, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}
.calculator-rate-card {
  margin-top: 1.4rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}
.calculator-rate-card strong { display: block; margin-bottom: 0.9rem; color: #fff; }
.calculator-rate-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.6rem; }
.calculator-rate-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.service-switcher {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
.vat-switcher {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.service-switcher legend {
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: var(--text);
}
.service-switcher label {
  display: block;
  cursor: pointer;
}
.service-switcher input { position: absolute; opacity: 0; pointer-events: none; }
.service-switcher span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
  min-height: 3.25rem;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(24, 25, 28, 0.08);
  background: rgba(24, 25, 28, 0.04);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.25;
  color: var(--text);
  transition: all var(--transition);
}
.service-switcher input:checked + span {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: var(--shadow-accent);
}
.field-grid,
.form-grid { display: grid; gap: 0.95rem; }
.field {
  display: grid;
  gap: 0.5rem;
}
.field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(24, 25, 28, 0.12);
  border-radius: 1rem;
  background: #fff;
  padding: 0.95rem 1rem;
  color: var(--text);
}
.field textarea { resize: vertical; min-height: 9rem; }
.calculator-output {
  margin: 1.1rem 0 1rem;
  padding: 1.2rem;
  border-radius: 1.3rem;
  background: #111317;
  color: #fff;
}
.output-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.output-label { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }
#total-price {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.2rem, 7vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.breakdown-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.breakdown-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.breakdown-list strong { color: #ffca85; }
.calculator-disclaimer { margin: 0 0 1.2rem; font-size: 0.92rem; }

/* ── Service Area ── */
.area-card { overflow: hidden; padding-bottom: 1.25rem; }
.area-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.area-card h3,
.area-card .city-list { padding-inline: 1.25rem; }
.city-list {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.city-list li {
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--surface-soft);
  border: 1px solid rgba(24, 25, 28, 0.08);
  font-weight: 700;
}

/* ── Reviews ── */
.reviews-grid { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.review-card { padding: 1.4rem; }
.review-card-featured {
  background: linear-gradient(135deg, rgba(221, 140, 40, 0.1), rgba(255, 255, 255, 0.94));
  border-color: rgba(221, 140, 40, 0.2);
}
.review-stars { color: var(--accent); letter-spacing: 0.12em; }
.review-card blockquote { margin: 1rem 0 0; }
.review-author { display: grid; gap: 0.15rem; margin-top: 1rem; }
.review-author span { color: var(--text-soft); font-size: 0.94rem; }

/* ── Projects (6 cards with badges) ── */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.project-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.project-media {
  position: relative;
  overflow: hidden;
}
.project-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}
.project-card:hover .project-media img {
  transform: scale(1.04);
}
.project-badge {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.badge-stucwerk { background: var(--accent); }
.badge-renovatie { background: #c4841e; }
.badge-schilderwerk { background: #3a7a5e; }
.badge-combo { background: #5b4ba0; }
.badge-nieuwbouw { background: #2e6f9e; }
.project-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: grid;
  gap: 0.35rem;
}
.project-body strong { font-size: 1.1rem; color: var(--text); }
.project-body p { margin: 0; font-size: 0.92rem; }
.project-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-deep);
}
.project-location svg { flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.9rem; }
.faq-item {
  padding: 0 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 1.15rem 1.2rem 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0 0 1.2rem; }

/* ── CTA Band ── */
.cta-band {
  padding: 1.3rem 0 0;
}
.cta-band-inner {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  color: var(--dark-text);
  background:
    radial-gradient(circle at top right, rgba(255, 201, 138, 0.24), transparent 22%),
    linear-gradient(135deg, #1c1e22, #16171a);
  box-shadow: var(--shadow-lg);
}
.cta-copy p { color: rgba(248, 244, 238, 0.74); }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.cta-actions .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}
.cta-trust-list {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.2rem;
  width: 100%;
}
.cta-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(248, 244, 238, 0.82);
}
.cta-trust-list svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ── Contact ── */
.contact-grid { gap: 1.3rem; }
.contact-panel {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.3rem;
}
.contact-method {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(24, 25, 28, 0.03);
  border: 1px solid rgba(24, 25, 28, 0.06);
}
.contact-method strong { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.calculator-summary {
  margin-top: 1.1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  border: 1px solid rgba(221, 140, 40, 0.18);
}
.calculator-summary strong { display: block; margin-bottom: 0.35rem; }
.contact-form { padding: 0; overflow: hidden; }
.form-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  font-size: 1rem;
}
.form-header strong { font-weight: 800; letter-spacing: 0.02em; }
.form-fieldset {
  margin: 0;
  padding: 1.2rem 1.4rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.form-fieldset legend {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}
.contact-form > .field {
  padding: 0.2rem 1.4rem 0;
}
.contact-form > .button {
  margin: 1.2rem 1.4rem 1.4rem;
  width: calc(100% - 2.8rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.field-full { grid-column: 1 / -1; }

/* ── Footer ── */
.site-footer {
  padding: 1.6rem 0 7rem;
  background: #111317;
  color: rgba(248, 244, 238, 0.78);
}
.site-footer .brand-word {
  color: #f7f3ec;
}
.footer-inner {
  padding-top: 1rem;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}
.footer-links a,
.footer-contact a { color: rgba(248, 244, 238, 0.74); }
.footer-copy { margin: 0; color: rgba(248, 244, 238, 0.54); }

/* ── Mobile CTA ── */
.mobile-cta {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 95;
  display: flex;
  gap: 0.75rem;
  padding: 0.7rem;
  border-radius: 1.2rem;
  background: rgba(17, 19, 23, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.mobile-cta .button { min-height: 3rem; padding-inline: 1.1rem; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 110;
  padding: 0 0 1rem;
}
.cookie-content {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(24, 25, 28, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}
.cookie-text p { margin: 0.35rem 0 0; color: var(--text-soft); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }
.delay-3 { transition-delay: 320ms; }

/* ══════════════════ RESPONSIVE ══════════════════ */

@media (min-width: 700px) {
  .stats-strip-inner { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookie-content { grid-template-columns: 1fr auto; align-items: center; }
  .footer-inner { grid-template-columns: 1.1fr 1.4fr 1fr; }
  .footer-copy { grid-column: 1 / -1; }
}

@media (min-width: 980px) {
  .calculator-grid,
  .area-grid,
  .contact-grid,
  .cta-band-inner { grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .project-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer { padding-bottom: 2rem; }
  .mobile-cta { display: none; }
}

@media (max-width: 979px) {
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.4rem;
    padding: 0.85rem;
    border-radius: 1.4rem;
    background: rgba(18, 19, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
  }
  .site-header.is-scrolled .site-nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(24, 25, 28, 0.08);
  }
  .site-header[data-nav-open="true"] .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav .nav-cta { margin-top: 0.4rem; width: 100%; }
  .service-switcher { grid-template-columns: 1fr; }
}

@media (max-width: 699px) {
  .button,
  .button-lg { width: 100%; }
  .hero-actions,
  .cta-actions,
  .cookie-actions { width: 100%; }
  .hero-stats { flex-direction: column; gap: 0.8rem; }
  .hero-stat { min-width: auto; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .output-total,
  .breakdown-list li,
  .footer-links,
  .footer-contact { flex-direction: column; align-items: flex-start; }
  .footer-links,
  .footer-contact { gap: 0.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
