:root {
  --primary: #8B6D01;
  --text: #000000;
  --accent: #FFFFFF;
  --background: #FFFFFF;
  --muted: #5f5f5f;
  --line: rgba(0, 0, 0, 0.1);
  --soft: #f8f6ef;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 108px; height: 78px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links a { padding: 10px 14px; border-radius: 999px; font-weight: 500; font-size: 0.94rem; color: #171717; }
.nav-links a:hover { background: var(--soft); }
.nav-cta { background: var(--primary) !important; color: #fff !important; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--soft); border-radius: 14px; padding: 11px; }
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 5px 0; }

.hero { position: relative; overflow: hidden; padding: 94px 0 72px; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(139,109,1,0.22), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fff 45%, #f7f4e8 100%);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 52px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.13em; font-weight: 500; font-size: 0.78rem; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 500; }
h1 { font-size: clamp(2.7rem, 6vw, 5.8rem); line-height: 0.96; letter-spacing: -0.045em; margin-bottom: 24px; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.05; letter-spacing: -0.035em; margin-bottom: 18px; }
h3 { font-size: 1.18rem; line-height: 1.25; margin-bottom: 10px; }
.hero-lead { font-size: 1.22rem; color: #242424; max-width: 640px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 500; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #fff; background: var(--primary); box-shadow: 0 18px 32px rgba(139,109,1,0.24); }
.btn.secondary { background: #fff; border: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { padding: 9px 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 500; font-size: 0.9rem; }
.hero-card { position: relative; overflow: hidden; min-height: 430px; padding: 36px; border-radius: var(--radius); background: #111; color: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: flex-end; }
.hero-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(139,109,1,0.95), rgba(0,0,0,0.9)), url('logo.png') center 18% / 220px no-repeat; opacity: .95; }
.hero-card > * { position: relative; }
.card-label { color: rgba(255,255,255,.76); font-weight: 500; }
.hero-card h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; }
.hero-card ul { list-style: none; padding: 0; margin: 12px 0 0; }
.hero-card li { padding: 11px 0 11px 28px; position: relative; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-card li::before { content: "✓"; position: absolute; left: 0; font-weight: 600; }
.shine { position: absolute; width: 230px; height: 230px; border-radius: 50%; background: rgba(255,255,255,.18); right: -70px; top: -70px; }

.section { padding: 88px 0; }
.intro { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.split > p { font-size: 1.14rem; color: var(--muted); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section-head.left { text-align: left; margin: 0; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(139,109,1,.35); }
.icon { display: inline-flex; width: 48px; height: 48px; border-radius: 50%; background: var(--soft); color: var(--primary); align-items: center; justify-content: center; font-weight: 600; margin-bottom: 28px; }
.service-card p, .step p { color: var(--muted); margin-bottom: 0; }
.sectoren { background: var(--soft); }
.panel { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; background: #fff; border-radius: var(--radius); padding: 46px; box-shadow: 0 20px 60px rgba(0,0,0,.07); }
.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.sector-grid span { padding: 18px; border-radius: 18px; background: var(--soft); font-weight: 500; border: 1px solid rgba(139,109,1,.12); }
.process { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 8px 18px; padding: 22px; border: 1px solid var(--line); border-radius: 22px; }
.step strong { grid-row: span 2; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--primary); color: #fff; }
.step h3 { margin-bottom: 0; }

.contact-section { padding: 92px 0; background: #0d0d0d; color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 56px; align-items: center; }
.contact-copy p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 560px; }
.contact-card { font-style: normal; background: #fff; color: #000; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-card a { color: var(--primary); font-weight: 600; font-size: 1.4rem; }
dl { margin: 24px 0; display: grid; gap: 10px; }
dl div { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
dt { font-weight: 500; } dd { margin: 0; color: var(--muted); text-align: right; }
.small { color: var(--muted); font-size: .93rem; }
.footer { padding: 28px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; align-items: center; color: var(--muted); }
.footer a { font-weight: 500; color: var(--primary); }

@media (max-width: 960px) {
  .hero-grid, .split, .panel, .process, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 66px; }
}
@media (max-width: 720px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; left: 14px; right: 14px; top: 96px; display: none; flex-direction: column; align-items: stretch; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; }
  .cards, .sector-grid { grid-template-columns: 1fr; }
  .section, .contact-section { padding: 64px 0; }
  .hero-card { min-height: 360px; padding: 28px; }
  .panel { padding: 28px; }
  .step { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
