/* ─── Design Tokens ─── */
:root {
  --bg:         #F7F3ED;
  --bg-card:    #EDE8E1;
  --accent:     #C4793A;
  --accent-dim: #E8DDD0;
  --text:       #1A1614;
  --text-muted: #6B5E56;
  --line:       #D9CFC6;

  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-size-base: 1rem;

  --space-xs:  0.5rem;
  --space-s:   1rem;
  --space-m:   2rem;
  --space-l:   4rem;
  --space-xl:  8rem;

  --radius:    4px;
  --max-w:     1200px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: var(--font-size-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─── */
.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 { line-height: 1.1; font-weight: 700; }

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; }

.body-large { font-size: clamp(1rem, 1.5vw, 1.2rem); color: var(--text-muted); line-height: 1.75; }

/* ─── Layout ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-m);
}

section { padding: var(--space-xl) 0; }

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-s) var(--space-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 243, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: var(--space-m);
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: #A5632F;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  padding-top: calc(var(--space-xl) + 4rem);
  padding-bottom: var(--space-xl);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-l);
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-m);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  margin-bottom: var(--space-m);
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p { margin-bottom: var(--space-l); max-width: 460px; }

.hero-actions {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 520px;
}

.hero-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: var(--space-m);
}

.hero-card-main {
  right: 0;
  top: 0;
  width: 300px;
  height: 380px;
  background: var(--text);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-card-main .card-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}
.hero-card-main .card-name { font-size: 1.4rem; font-weight: 700; }
.hero-card-main .card-title { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
.hero-photo-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 260px;
  overflow: hidden;
}
.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  display: block;
}
.hero-photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text));
}

.hero-card-stat {
  left: 0;
  bottom: 60px;
  width: 200px;
  padding: var(--space-s) var(--space-m);
}
.hero-card-stat .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-card-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.hero-card-quote {
  left: 30px;
  bottom: 0;
  width: 240px;
  padding: var(--space-s);
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.5;
  border: none;
}

/* ─── Stats Bar ─── */
.stats-bar {
  padding: var(--space-m) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  display: flex;
  gap: var(--space-l);
  align-items: center;
}
.stat-item { flex: 1; }
.stat-item .value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat-item .value span { color: var(--accent); }
.stat-item .desc { font-size: 0.85rem; color: var(--text-muted); }
.stats-divider {
  width: 1px;
  height: 3rem;
  background: var(--line);
}

/* ─── Over Tom (intro) ─── */
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.intro-sticky { position: sticky; top: 6rem; }

.intro-tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: var(--space-m);
}

.intro-content h2 { margin-bottom: var(--space-m); letter-spacing: -0.02em; }
.intro-content p { color: var(--text-muted); margin-bottom: var(--space-m); max-width: 480px; }

.intro-right p { color: var(--text-muted); margin-bottom: var(--space-m); font-size: 1.05rem; line-height: 1.8; }

.quote-block {
  border-left: 3px solid var(--accent);
  padding-left: var(--space-m);
  margin: var(--space-l) 0;
}
.quote-block blockquote {
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
}

/* ─── Diensten ─── */
.diensten { background: var(--text); color: #fff; }

.diensten .label { color: var(--accent); }
.diensten h2 { color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.diensten .section-sub { color: rgba(255,255,255,0.5); margin-bottom: var(--space-xl); max-width: 480px; }

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.dienst-card {
  background: var(--text);
  padding: var(--space-l) var(--space-m);
  transition: background 0.25s;
}
.dienst-card:hover { background: #2A201C; }

.dienst-number {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-m);
}

.dienst-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: var(--space-s); }
.dienst-card p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; }

/* ─── Werkwijze ─── */
.werkwijze-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.werkwijze-left h2 { letter-spacing: -0.02em; margin-bottom: var(--space-m); }
.werkwijze-left p { color: var(--text-muted); margin-bottom: var(--space-l); max-width: 400px; }

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--space-m);
  padding: var(--space-m) 0;
  border-bottom: 1px solid var(--line);
}
.step:first-child { border-top: 1px solid var(--line); }

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  padding-top: 0.2rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── Tarieven ─── */
.tarieven { background: var(--bg-card); }

.tarieven-header { margin-bottom: var(--space-xl); }
.tarieven-header h2 { letter-spacing: -0.02em; margin-bottom: var(--space-s); }
.tarieven-header p { color: var(--text-muted); max-width: 500px; }

.tarieven-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}

.tarief-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: var(--space-l);
}

.tarief-block.featured {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.tarief-block.featured .tarief-type { color: var(--accent); }
.tarief-block.featured .tarief-desc { color: rgba(255,255,255,0.5); }
.tarief-block.featured .tarief-row { border-bottom-color: rgba(255,255,255,0.1); }
.tarief-block.featured .tarief-label { color: rgba(255,255,255,0.6); }
.tarief-block.featured .tarief-val { color: #fff; }

.tarief-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-s);
}
.tarief-name { font-size: 1.6rem; font-weight: 700; margin-bottom: var(--space-xs); }
.tarief-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: var(--space-l); }

.tarief-rows { display: flex; flex-direction: column; gap: 0; }
.tarief-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.tarief-label { font-size: 0.9rem; color: var(--text-muted); }
.tarief-val { font-size: 0.95rem; font-weight: 600; }

.garantie-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: var(--space-m) var(--space-l);
  display: flex;
  align-items: center;
  gap: var(--space-m);
}
.garantie-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.garantie-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.garantie-text p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── CTA ─── */
.cta-section {
  text-align: center;
  padding: var(--space-xl) 0;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-section h2 { letter-spacing: -0.02em; margin-bottom: var(--space-m); }
.cta-section p { color: var(--text-muted); margin-bottom: var(--space-l); }
.cta-actions { display: flex; gap: var(--space-s); justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--line);
  padding: var(--space-m) 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
}
.footer-logo { font-weight: 700; }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: var(--space-m); }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Mobile nav toggle ─── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .intro-inner { grid-template-columns: 1fr; }
  .intro-sticky { position: static; }
  .diensten-grid { grid-template-columns: 1fr; }
  .werkwijze-inner { grid-template-columns: 1fr; }
  .tarieven-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; gap: var(--space-m); }
  .stats-divider { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--bg);
    padding: var(--space-m);
    border-bottom: 1px solid var(--line);
    gap: var(--space-m);
  }
  .nav-toggle { display: flex; }
  section { padding: var(--space-l) 0; }
}

/* ─── Animaties ─── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
