/* ============================================================
   PONTUS STUCWERKEN — Design System
   Bebas Neue (display) + DM Sans (body)
   Dark #111 · Gold #c9a84c · Cream #f5f5f2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ===== TOKENS ===== */
:root {
  --bg:           #111111;
  --bg-light:     #f5f5f2;
  --surface:      #1c1c1c;
  --surface-2:    #222222;
  --surface-3:    #2a2a2a;
  --accent:       #c9a84c;
  --accent-hover: #b8953e;
  --text:         #ffffff;
  --text-dark:    #111111;
  --text-muted:   #888888;
  --text-dim:     rgba(255,255,255,0.45);
  --border:       #2e2e2e;
  --border-light: #e0ddd8;
  --whatsapp:     #25D366;

  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --max-w: 1200px;
  --pad:   clamp(20px, 4vw, 48px);

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t1:        0.18s;
  --t2:        0.35s;
  --t3:        0.55s;

  --nav-height: 70px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.5); }

/* ===== GRAIN OVERLAY (global atmosphere) ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== TYPOGRAPHY SCALE ===== */
.t-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.t-label.center { justify-content: center; }
.t-label.center::before { display: none; }
.t-label.center::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--t1) var(--ease), transform var(--t1) var(--ease), box-shadow var(--t1) var(--ease);
  white-space: nowrap;
  font-family: var(--font-body);
  line-height: 1;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1fbc58;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #000;
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg { padding: 17px 34px; font-size: 0.8rem; }

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t2) var(--ease), box-shadow var(--t2) var(--ease);
}
.site-nav.transparent { background: transparent; }
.site-nav.solid {
  background: rgba(11,11,11,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.22em;
  color: var(--text);
}
.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--t1);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--t2) var(--ease), opacity var(--t2);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(11,11,11,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 24px var(--pad) 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t1);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .btn { margin-top: 16px; width: 100%; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-height) + clamp(80px, 12vh, 160px));
  padding-bottom: clamp(48px, 8vh, 96px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 25%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 20% 75%, rgba(201,168,76,0.04) 0%, transparent 55%),
    linear-gradient(160deg, #080808 0%, #181510 40%, #111111 100%);
}

/* Diagonal accent stripe */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -10%; right: 8%;
  width: 1px;
  height: 55%;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,168,76,0.5) 40%, rgba(201,168,76,0.2) 80%, transparent 100%);
}

/* Large ghosted watermark */
.hero-bg::after {
  content: 'STUC';
  position: absolute;
  bottom: -4%;
  right: -2%;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 280px);
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin: 12px 0 24px;
  max-width: 8ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-dim);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.35;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ===== USP BAR ===== */
.usp-bar {
  background: var(--accent);
  padding: 20px 0;
}
.usp-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.usp-icon { font-size: 1.25rem; flex-shrink: 0; }
.usp-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.3;
}

/* ===== SECTION SCAFFOLD ===== */
.section-dark  { background: var(--bg);       padding: clamp(56px,8vw,96px) 0; position: relative; }
.section-light { background: var(--bg-light); padding: clamp(56px,8vw,96px) 0; position: relative; }
.section-alt   { background: #0d0d0d;          padding: clamp(56px,8vw,96px) 0; position: relative; }

.section-header { margin-bottom: clamp(32px, 5vw, 56px); }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 8px;
}
.section-header p {
  margin-top: 14px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.section-light .section-header h2 { color: var(--text-dark); }
.section-light .section-header p  { color: #555; }
.section-light .t-label           { color: #9a7830; }
.section-light .t-label::before   { background: #9a7830; }

/* ===== SERVICE CARDS (home preview) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 12px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t2), transform var(--t2) var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t2) var(--ease);
}
.service-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }

.service-card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t1);
}
.service-card-link:hover { gap: 10px; }
.service-card-link svg { width: 12px; height: 12px; }

/* ===== PROJECTS PREVIEW (home) ===== */
.projects-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.project-pair {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color var(--t2), transform var(--t2) var(--ease);
}
.project-pair:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }

.project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.project-images .img-ph {
  height: 185px;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-images img {
  height: 185px;
  width: 100%;
  object-fit: cover;
  background: var(--surface-2);
}
.img-ph span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  font-weight: 600;
}
.vor-na-divider {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vor-na-badge {
  position: absolute;
  background: var(--accent);
  color: #000;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 6px;
  border-radius: 2px;
  white-space: nowrap;
}
.lbl-voor {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 2px;
  z-index: 2;
}
.lbl-na {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--accent);
  color: #000;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 2px;
  z-index: 2;
}

.project-meta {
  padding: 14px 16px;
}
.project-meta h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.project-meta p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.projects-all-link { text-align: center; }

/* ===== CALCULATOR ===== */
.calc-section {
  background: var(--bg);
  padding: clamp(56px,8vw,96px) 0;
  position: relative;
}
.calc-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--accent) 50%, transparent 100%);
}
.calc-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--accent) 50%, transparent 100%);
}

.calc-wrap { max-width: 760px; margin: 0 auto; }

.calc-intro {
  text-align: center;
  margin-bottom: 40px;
}
.calc-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  margin: 8px 0;
}
.calc-intro p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Progress */
.calc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  gap: 0;
}
.cp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.cp-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cp-circle.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.cp-circle.done {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}
.cp-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--t2);
}
.cp-step.active .cp-lbl,
.cp-step.done .cp-lbl { color: var(--accent); }

.cp-line {
  flex: 1;
  max-width: 90px;
  height: 2px;
  background: var(--border);
  margin: 0 -1px;
  margin-bottom: 26px;
  transition: background 0.4s ease;
}
.cp-line.done { background: var(--accent); }

/* Calc card */
.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(20px, 4vw, 36px);
}

.calc-step { display: none; }
.calc-step.active { display: block; }
.calc-success { display: none; text-align: center; padding: 48px 24px; }
.calc-success.show { display: block; }

.calc-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.calc-step-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 520px;
}

/* Step 1 – woning cards */
.woning-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.woning-card {
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  text-align: center;
  transition: border-color var(--t1), background var(--t1);
}
.woning-card:hover { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.04); }
.woning-card.selected { border-color: var(--accent); background: rgba(201,168,76,0.08); }
.woning-card-icon { font-size: 2.2rem; margin-bottom: 10px; }
.woning-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.btw-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--accent);
  color: #000;
  border-radius: 2px;
}

/* Step 2 – accordions */
.accordions { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }

.accordion { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }

.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  background: var(--surface-2);
  user-select: none;
  transition: background var(--t1);
}
.acc-header:hover { background: var(--surface-3); }

.acc-header-left { display: flex; align-items: center; gap: 10px; }
.acc-icon { font-size: 1rem; }
.acc-title { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em; }
.acc-badge {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 2px 7px;
  border-radius: 2px;
}
.acc-arrow {
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: transform var(--t2) var(--ease);
}
.accordion.open .acc-arrow { transform: rotate(180deg); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s var(--ease);
}
.accordion.open .acc-body { max-height: 500px; }
.acc-body-inner { padding: 16px; border-top: 1px solid var(--border); }

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-row.single { grid-template-columns: 1fr; }

.f-group { display: flex; flex-direction: column; gap: 5px; }
.f-group label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}
.f-group select,
.f-group input,
.f-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.875rem;
  transition: border-color var(--t1);
  width: 100%;
}
.f-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 32px;
}
.f-group select:focus,
.f-group input:focus,
.f-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.f-group select:disabled { opacity: 0.35; cursor: not-allowed; }
.f-group textarea { resize: vertical; min-height: 90px; }

/* Step 3 grid */
.step3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.step3-grid .f-group.wide { grid-column: 1 / -1; }

/* Privacy toggle */
.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0 8px;
}
.toggle-wrap { position: relative; width: 44px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.toggle-wrap input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--t2);
}
.toggle-track::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  left: 3px; top: 3px;
  transition: transform var(--t2) var(--ease);
}
.toggle-wrap input:checked + .toggle-track { background: var(--accent); }
.toggle-wrap input:checked + .toggle-track::before { transform: translateX(20px); }
.privacy-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* Calc navigation */
.calc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.btn-calc-back {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: opacity var(--t1);
  font-family: var(--font-body);
}
.btn-calc-back:hover { opacity: 0.7; }
.btn-calc-back.hidden { visibility: hidden; pointer-events: none; }

.btn-calc-next {
  padding: 12px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--t1) var(--ease);
}
.btn-calc-next.ready {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-calc-next.ready:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.calc-success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.calc-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 12px;
}
.calc-success p { color: var(--text-muted); max-width: 380px; margin: 0 auto; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #0c0b09;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: clamp(56px,8vw,96px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'PONTUS';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 240px);
  letter-spacing: 0.18em;
  color: rgba(201,168,76,0.03);
  pointer-events: none;
  white-space: nowrap;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: clamp(40px,6vw,64px) 0 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
.footer-brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 270px;
}
.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t1);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact-item strong { color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.22); }
.footer-disclaimer { font-style: italic; max-width: 420px; line-height: 1.5; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform var(--t1), box-shadow var(--t1);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background: var(--bg);
  padding: calc(70px + clamp(40px,6vw,72px)) 0 clamp(40px,6vw,72px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.page-hero-ghost {
  position: absolute;
  right: -2%; bottom: -10%;
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 220px);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  line-height: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  max-width: 10ch;
  margin-top: 8px;
}
.page-hero p {
  color: var(--text-muted);
  max-width: 480px;
  margin-top: 16px;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ===== DIENSTEN page ===== */
.dienst-block {
  padding: clamp(40px,6vw,72px) 0;
  border-bottom: 1px solid var(--border);
}
.dienst-block:last-child { border-bottom: none; }

.dienst-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,72px);
  align-items: center;
}
.dienst-block:nth-child(even) .dienst-inner { direction: rtl; }
.dienst-block:nth-child(even) .dienst-text { direction: ltr; }

.dienst-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}
.dienst-img .img-ph-tall {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dienst-img .img-ph-tall span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.dienst-img img { width: 100%; height: 100%; object-fit: cover; }

.dienst-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 4px;
}
.dienst-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.dienst-text > p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
  font-size: 0.95rem;
}
.dienst-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.dienst-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.dienst-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== PROJECTEN page ===== */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px,1fr));
  gap: 16px;
}
.project-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  transition: transform var(--t2) var(--ease), border-color var(--t2);
}
.project-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,0.3); }

.project-card-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.project-card-imgs .img-ph { height: 220px; }
.project-card-imgs img { height: 220px; width: 100%; object-fit: cover; background: var(--surface-2); }

.project-card-body { padding: 16px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.project-tag {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(201,168,76,0.1);
  color: var(--accent);
}
.project-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.project-card-body p { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CONTACT page ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px,5vw,64px);
  align-items: start;
}
.contact-option-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 12px;
}
.contact-option-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.contact-option-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
}
.contact-info-card h3 {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 14px;
}
.info-row { display: flex; gap: 10px; margin-bottom: 8px; align-items: baseline; }
.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  width: 80px;
}
.info-val { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(20px,4vw,32px);
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.contact-form .form-row { margin-bottom: 12px; }
.contact-form .f-group { margin-bottom: 12px; }
.contact-form .f-group select,
.contact-form .f-group input,
.contact-form .f-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.875rem;
  transition: border-color var(--t1);
  width: 100%;
  font-family: var(--font-body);
}
.contact-form .f-group select:focus,
.contact-form .f-group input:focus,
.contact-form .f-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.contact-form .f-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.contact-form .f-group textarea { resize: vertical; min-height: 110px; }

.contact-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.contact-success.show { display: block; }
.contact-success-icon { font-size: 3rem; margin-bottom: 16px; }
.contact-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-success p { color: var(--text-muted); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t3) var(--ease), transform var(--t3) var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== UTILITIES ===== */
.text-accent { color: var(--accent); }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dienst-inner { grid-template-columns: 1fr; gap: 24px; }
  .dienst-block:nth-child(even) .dienst-inner { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .btn { display: none; }
  .nav-hamburger { display: flex; }
  .usp-bar-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-preview-grid { grid-template-columns: 1fr; }
  .projects-page-grid { grid-template-columns: 1fr; }
  .woning-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }
  .step3-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cp-lbl { display: none; }
  .cp-line { max-width: 48px; }
  .hero-actions .btn { flex: 1; min-width: 0; }

  .hero .t-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .usp-bar-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.theme-toggle:hover {
  border-color: var(--accent);
}
.theme-icon {
  font-size: 0.85rem;
  padding: 3px 5px;
  border-radius: 12px;
  opacity: 0.35;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.theme-icon.moon.active {
  opacity: 1;
  background: rgba(255,255,255,0.12);
  transform: scale(1.15);
}
.theme-icon.sun.active {
  opacity: 1;
  background: rgba(184,149,62,0.2);
  transform: scale(1.15);
}

/* ============================================================
   LIGHT MODE — :root[data-theme="light"]
   ============================================================ */
:root[data-theme="light"] {
  --bg:           #f5f5f2;
  --bg-alt:       #ffffff;
  --bg-dark:      #e8e6e1;
  --surface:      #ffffff;
  --surface-2:    #f0ede8;
  --surface-3:    #e8e5e0;
  --text:         #111111;
  --text-dark:    #111111;
  --text-muted:   #555555;
  --text-dim:     rgba(0,0,0,0.45);
  --border:       #d0cec8;
  --border-light: #d0cec8;
  --accent:       #b8953e;
  --accent-hover: #a07830;
}

/* --- Nav --- */
[data-theme="light"] .site-nav.solid {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
}
[data-theme="light"] .nav-hamburger span {
  background: var(--text);
}
[data-theme="light"] .nav-mobile {
  background: #ffffff;
  border-top: 1px solid var(--border);
}
[data-theme="light"] .nav-mobile a {
  color: var(--text);
  border-bottom-color: var(--border);
}

/* --- Hero --- */
[data-theme="light"] .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 75% 25%, rgba(184,149,62,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 20% 75%, rgba(184,149,62,0.04) 0%, transparent 55%),
    linear-gradient(160deg, #eae7e2 0%, #f5f5f2 50%, #ede9e3 100%);
}
[data-theme="light"] .hero-bg::after {
  color: rgba(0,0,0,0.03);
}
[data-theme="light"] .hero h1 { color: var(--text); }
[data-theme="light"] .hero h1 em { color: var(--accent); }
[data-theme="light"] .hero-sub { color: var(--text-muted); }
[data-theme="light"] .hero-scroll-hint { color: var(--text-muted); }
[data-theme="light"] .scroll-line { background: var(--border); }
[data-theme="light"] .hero-scroll-hint span { color: var(--text-muted); }

/* --- Page hero (dienst-pagina's) --- */
[data-theme="light"] .page-hero { background: var(--bg-dark); }
[data-theme="light"] .page-hero h1 { color: var(--text); }
[data-theme="light"] .page-hero-ghost { color: rgba(0,0,0,0.03); }

/* --- USP bar blijft goud --- */

/* --- Sections --- */
[data-theme="light"] .section-dark { background: var(--bg); }
[data-theme="light"] .section-light { background: var(--bg-alt); }
[data-theme="light"] .section-alt   { background: var(--bg-dark); }
[data-theme="light"] .section-header h2 { color: var(--text); }
[data-theme="light"] .section-header p  { color: var(--text-muted); }

/* --- Service cards --- */
[data-theme="light"] .service-card {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="light"] .service-card h3 { color: var(--text); }
[data-theme="light"] .service-card p  { color: var(--text-muted); }
[data-theme="light"] .service-card-num { color: var(--border); }

/* --- Calculator --- */
[data-theme="light"] .calc-section { background: var(--bg-dark); }
[data-theme="light"] .calc-intro h2,
[data-theme="light"] .calc-intro p { color: var(--text); }
[data-theme="light"] .calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
[data-theme="light"] .calc-step-title,
[data-theme="light"] .calc-step-sub { color: var(--text); }
[data-theme="light"] .woning-card {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}
[data-theme="light"] .woning-card h3 { color: var(--text); }
[data-theme="light"] .woning-card.selected { border-color: var(--accent); }
[data-theme="light"] .acc-header {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}
[data-theme="light"] .acc-body {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="light"] .acc-title { color: var(--text); }
[data-theme="light"] .f-group label { color: var(--text-muted); }
[data-theme="light"] select,
[data-theme="light"] input,
[data-theme="light"] textarea {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}
[data-theme="light"] .cp-circle {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
[data-theme="light"] .cp-circle.active { background: var(--accent); color: #000; border-color: var(--accent); transform: scale(1.1); box-shadow: 0 0 12px rgba(201,168,76,0.4); }
[data-theme="light"] .cp-circle.done { background: var(--accent); color: #000; border-color: var(--accent); }
[data-theme="light"] .cp-lbl { color: var(--text-muted); }
[data-theme="light"] .cp-line { background: var(--border); }
[data-theme="light"] .cp-line.done { background: var(--accent); }
[data-theme="light"] .privacy-text { color: var(--text-muted); }

/* --- Project cards --- */
[data-theme="light"] .project-card {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="light"] .project-card h3 { color: var(--text); }
[data-theme="light"] .project-card p  { color: var(--text-muted); }
[data-theme="light"] .project-tag {
  background: var(--surface-2);
  color: var(--text-muted);
  border-color: var(--border);
}
[data-theme="light"] .project-card-body { border-top-color: var(--border); }
[data-theme="light"] .lbl-voor,
[data-theme="light"] .lbl-na { background: rgba(0,0,0,0.55); }

/* --- Diensten blokken --- */
[data-theme="light"] .dienst-block { border-bottom-color: var(--border); }
[data-theme="light"] .dienst-num   { color: var(--border); }
[data-theme="light"] .dienst-text h2 { color: var(--text); }
[data-theme="light"] .dienst-text p  { color: var(--text-muted); }
[data-theme="light"] .dienst-list li { color: var(--text-muted); }

/* --- Contact pagina --- */
[data-theme="light"] .contact-option-card,
[data-theme="light"] .contact-info-card,
[data-theme="light"] .contact-form-card {
  background: var(--surface);
  border-color: var(--border);
}
[data-theme="light"] .contact-option-card h3,
[data-theme="light"] .contact-info-card h3,
[data-theme="light"] .contact-form-card h2 { color: var(--text); }
[data-theme="light"] .contact-option-card p,
[data-theme="light"] .contact-info-card p   { color: var(--text-muted); }
[data-theme="light"] .info-label { color: var(--text-muted); }
[data-theme="light"] .info-val   { color: var(--text); }

/* --- CTA banner: altijd donker, tekst altijd wit --- */
[data-theme="light"] .cta-banner { background: #1c1c1c; }

[data-theme="light"] .cta-banner h2,
[data-theme="light"] .cta-banner p,
[data-theme="light"] .cta-banner .t-label,
[data-theme="light"] .cta-banner .fade-up { color: #ffffff; }

[data-theme="light"] .cta-banner p { color: rgba(255,255,255,0.7); }

/* --- Img placeholders in light mode --- */
[data-theme="light"] .img-ph,
[data-theme="light"] .img-ph-tall { background: var(--surface-2); }

/* --- Project preview (homepage) --- */
[data-theme="light"] .project-pair { background: var(--surface); border-color: var(--border); }
[data-theme="light"] .project-meta h4 { color: var(--text); }
[data-theme="light"] .project-meta p  { color: var(--text-muted); }
[data-theme="light"] .vor-na-divider  { background: rgba(0,0,0,0.4); }

/* ============================================================
   DESKTOP HERO — above the fold fix
   ============================================================ */
@media (min-width: 1024px) {
  .hero {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }
  .hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
  }
}

/* ============================================================
   STUCWERK KOSTEN PAGE
   ============================================================ */

.kosten-section { padding: clamp(56px,8vw,96px) 0; }

.kosten-intro {
  max-width: 680px;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  line-height: 1.7;
}
.kosten-intro.text-center { margin: 0 auto 2.5rem; }
.text-center { text-align: center; }

/* --- Price tables --- */
.price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px;
}
.price-table thead tr {
  background: var(--surface-2);
  border-bottom: 2px solid var(--gold);
}
.price-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--t1);
}
.price-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.price-table tbody tr:hover { background: var(--surface-2); }
.price-table td {
  padding: 13px 16px;
  color: var(--text);
  vertical-align: middle;
}
.price-table td em { color: var(--text-muted); font-style: normal; font-size: 0.82rem; }
.price-note { color: var(--text-muted); font-size: 0.82rem; }
.price-table td small { color: var(--text-muted); font-size: 0.75rem; }

.price-cell {
  font-weight: 700;
  color: var(--gold) !important;
  white-space: nowrap;
}

.price-group-header td {
  background: rgba(185,145,55,0.12) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px !important;
  border-top: 1px solid rgba(185,145,55,0.3);
  border-bottom: 1px solid rgba(185,145,55,0.2);
}

.price-disclaimer {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --- Factor grid (sectie 2) --- */
.factoren-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.factor-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  transition: border-color var(--t1);
}
.factor-card:hover { border-color: var(--gold); }
.factor-icon {
  color: var(--gold);
  font-size: 0.5rem;
  margin-bottom: 14px;
}
.factor-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--text);
}
.factor-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* --- Duurder grid (sectie 4) --- */
.duurder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.duurder-item {
  border-left: 3px solid var(--gold);
  padding: 20px 20px 20px 22px;
  background: var(--surface-2);
  border-radius: 0 6px 6px 0;
}
.duurder-num {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.duurder-item h3 {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--text);
}
.duurder-item p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* --- FAQ accordion list (sectie 5) --- */
.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-acc .acc-title { font-size: 0.95rem; }
.faq-acc .acc-body-inner p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* --- Page disclaimer --- */
.kosten-page-disclaimer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.kosten-page-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  text-align: center;
}

/* --- Light theme overrides --- */
[data-theme="light"] .factor-card { background: var(--surface-2); }
[data-theme="light"] .duurder-item { background: var(--surface-2); }
[data-theme="light"] .price-table tbody tr:nth-child(even) { background: rgba(0,0,0,0.02); }
[data-theme="light"] .price-table tbody tr:hover { background: var(--surface-3); }
[data-theme="light"] .price-table thead tr { background: var(--surface-3); }
[data-theme="light"] .price-group-header td { background: rgba(154,120,48,0.1) !important; }

/* --- Responsive --- */
@media (max-width: 640px) {
  .factoren-grid { grid-template-columns: 1fr; }
  .duurder-grid  { grid-template-columns: 1fr; }
  .faq-acc .acc-title { font-size: 0.88rem; }
}

/* --- Kosten teaser (stucwerk.html) --- */
.kosten-teaser-inner {
  max-width: 620px;
}
.kosten-teaser-inner h2 {
  margin: 0 0 16px;
}
.kosten-teaser-inner p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}

/* --- Service card price link (index.html) --- */
.service-card-price-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity var(--t1);
}
.service-card-price-link:hover { opacity: 0.65; }
}
