
:root {
  --bg: #0a0a0a; --surface-1: #141414; --surface-2: #1a1a1a; --surface-3: #202020;
  --gold: #c9a14a; --gold-light: #e8c878;
  --gold-grad: linear-gradient(120deg, #e8c878 0%, #c9a14a 100%);
  --bone: #f5f1ea; --text-muted: #8a8580; --text-faint: #5a5550;
  --hairline: rgba(201, 161, 74, 0.15); --hairline-soft: rgba(245, 241, 234, 0.07);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --maxw: 1240px; --radius: 4px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--bone);
  font-family: var(--font-body); font-weight: 300; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 1.5rem + 3.5vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--bone); }
p { margin-bottom: 1rem; color: var(--bone); }
.muted { color: var(--text-muted); }
.gold { color: var(--gold); }
.gold-grad-text { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mono { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.hairline { height: 1px; background: var(--hairline); border: 0; margin: 3rem 0; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
.btn { display: inline-block; padding: 1rem 2rem; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em; text-decoration: none; border-radius: var(--radius); transition: all 0.3s ease; cursor: pointer; }
.btn-primary { background: var(--gold-grad); color: #0a0a0a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 161, 74, 0.3); color: #0a0a0a; }
.btn-ghost { background: transparent; color: var(--bone); border: 1px solid var(--hairline); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
section { padding: 5rem 0; }
.serif-lead { font-family: var(--font-display); font-style: normal; font-size: clamp(1.3rem, 1rem + 1vw, 1.75rem); line-height: 1.4; color: var(--bone); }
.serif-lead .gold { color: var(--gold); }

nav.topnav { padding: 1.5rem 0; border-bottom: 1px solid var(--hairline); position: sticky; top: 0; background: rgba(10,10,10,0.95); backdrop-filter: blur(10px); z-index: 50; }
nav.topnav .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
nav.topnav .brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--bone); }
nav.topnav .brand .gold { color: var(--gold); }
nav.topnav ul { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav.topnav ul a { color: var(--text-muted); font-size: 0.9rem; }
nav.topnav ul a:hover { color: var(--gold); }

footer.site { border-top: 1px solid var(--hairline); padding: 4rem 0 2rem; margin-top: 4rem; background: var(--surface-1); }
footer.site .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
footer.site h4 { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 0.5rem; }
footer.site ul a { color: var(--text-muted); font-size: 0.9rem; }
footer.site ul a:hover { color: var(--gold); }
footer.site .copy { border-top: 1px solid var(--hairline); padding-top: 2rem; text-align: center; color: var(--text-faint); font-size: 0.85rem; }

/* HERO */
.hero { position: relative; padding: 6rem 0 5rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: brightness(0.7); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.9) 100%); }
.hero-content { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { font-family: var(--font-display); font-size: clamp(1.25rem, 1rem + 0.8vw, 1.7rem); line-height: 1.4; margin-top: 1.5rem; max-width: 720px; color: var(--bone); }
.hero .meta-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; }
.hero .meta-row span { border-left: 2px solid var(--gold); padding-left: 0.75rem; }

/* USP GRID */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.usp { border-top: 1px solid var(--hairline); padding-top: 1.5rem; }
.usp .num { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.usp p { color: var(--text-muted); font-size: 0.95rem; }

/* USE CASES */
.usecase-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.usecase { background: var(--surface-1); border: 1px solid var(--hairline-soft); padding: 1.75rem; border-radius: var(--radius); }
.usecase h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--gold-light); }
.usecase p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* CTA BLOK */
.cta-block { background: var(--surface-1); border: 1px solid var(--hairline); padding: 3rem 2rem; border-radius: var(--radius); text-align: center; margin: 3rem 0; }
.cta-block h2 { color: var(--gold-light); }
.cta-block p { max-width: 600px; margin: 1rem auto 2rem; color: var(--text-muted); }
.cta-block .contact-info { margin-top: 2rem; font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.08em; }
.cta-block .contact-info a { color: var(--gold); }

/* SERVICE-KRUISVERWIJZING */
.other-services { margin-top: 4rem; }
.other-services .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.svc-card { background: var(--surface-2); border: 1px solid var(--hairline-soft); padding: 1.5rem; border-radius: var(--radius); transition: border-color 0.2s; }
.svc-card:hover { border-color: var(--gold); }
.svc-card .label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; display: block; margin-bottom: 0.5rem; }
.svc-card h3 { font-size: 1.15rem; margin: 0 0 0.5rem; }
.svc-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 1rem; }
.svc-card a { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.1em; }

/* BUURGEMEENTEN */
.neighbours { margin-top: 3rem; padding: 2rem; background: var(--surface-1); border-radius: var(--radius); border: 1px solid var(--hairline-soft); }
.neighbours h3 { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.neighbours ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.neighbours ul li { font-size: 0.9rem; }
.neighbours ul a { color: var(--text-muted); }
.neighbours ul a:hover { color: var(--gold); }

/* PROCES */
.process-steps { counter-reset: proc; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.step { position: relative; padding: 1.5rem; background: var(--surface-1); border-left: 2px solid var(--gold); }
.step::before { counter-increment: proc; content: counter(proc, decimal-leading-zero); font-family: var(--font-mono); font-size: 0.85rem; color: var(--gold); letter-spacing: 0.1em; }
.step h3 { font-size: 1.05rem; margin: 0.5rem 0; }
.step p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Responsive */
@media (max-width: 720px) {
  nav.topnav .container { flex-direction: column; align-items: flex-start; }
  nav.topnav ul { gap: 1rem; font-size: 0.85rem; }
  section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3rem; }
}
