:root {
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --ink: #0f172a;
  --ink-soft: #475569;
  --brand: #f59f00;
  --brand-dark: #b45309;
  --line: #e2e8f0;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
address { font-style: normal; }
strong { font-weight: 700; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .85em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--brand); color: #1a120b; box-shadow: 0 8px 20px rgba(245, 159, 0, .35); }
.btn-accent:hover { background: #ffb020; }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-small { padding: .55em 1.2em; font-size: .95rem; }
.btn-block { width: 100%; text-align: center; border: none; cursor: pointer; font-size: 1rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.01em; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--ink); color: var(--brand); border-radius: 12px;
}
.brand-name { font-size: 1.15rem; }
.brand-name strong { color: var(--brand); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: 1rem; }
.nav a:hover { color: var(--brand-dark); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* Hero */
.hero { background: linear-gradient(135deg, #1e293b, #0f172a); color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding: 72px 0 64px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--brand); margin-bottom: 14px; }
.eyebrow.center { text-align: center; }
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.hero-copy h1 .dot { color: var(--brand); }
.lead { font-size: 1.15rem; color: #cbd5e1; max-width: 34em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; padding: 0; margin: 0; color: #94a3b8; font-size: .95rem; }
.hero-trust li::before { content: "✓"; color: var(--brand); font-weight: 800; margin-right: 8px; }
.hero-art svg { border-radius: 24px; }
.hero-art img { width: 100%; height: auto; display: block; border-radius: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }

/* Sections */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
section[id] { scroll-margin-top: 84px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--ink-soft); max-width: 46em; margin: 0 auto 44px; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card-icon { width: 62px; height: 62px; border-radius: 14px; display: grid; place-items: center; background: var(--ink); color: var(--brand); margin-bottom: 18px; }
.card h3 { font-size: 1.15rem; margin-bottom: .5em; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.checklist { list-style: none; padding: 0; margin: auto 0 0; border-top: 1px solid var(--line); padding-top: 14px; }
.checklist li { font-size: .9rem; color: var(--ink-soft); padding: 4px 0; padding-left: 22px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

/* Showroom */
.bikes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 28px; }
.bike { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow); }
.bike h3 { font-size: 1.1rem; margin-bottom: .2em; }
.bike-price { color: var(--brand-dark); font-weight: 800; font-size: 1.05rem; margin-bottom: .3em; }
.bike-desc { color: var(--ink-soft); font-size: .93rem; margin: 0; }
.note { color: var(--ink-soft); font-size: .95rem; }
.center { text-align: center; }

/* Multi-page */
.nav a.active { color: var(--brand); font-weight: 700; }
.nav a.active:hover { color: var(--brand-dark); }

.page-hero { background: linear-gradient(135deg, #1e293b, #0f172a); color: #fff; padding: 64px 0 56px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 12px; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-lead { color: #cbd5e1; font-size: 1.08rem; max-width: 40em; margin: 0; }

.bike-photo {
  background: linear-gradient(160deg, #f3f5f8, #e7ebf0);
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  margin: -20px -20px 16px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.bike-photo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.bike-icon { color: #94a3b8; display: inline-flex; }
.bike .btn { margin-top: 6px; }

.cta-band { background: linear-gradient(135deg, #1e293b, #0f172a); color: #fff; padding: 56px 0; text-align: center; }
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: #cbd5e1; max-width: 40em; margin: 0 auto 24px; }
.cta-band .btn { margin-top: 6px; }

.page-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 96px; }
.page-cols h2 { text-align: left; }

/* Over ons */
.over-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: start; }
.over-copy .section-title { text-align: left; }
.over-copy p { color: var(--ink-soft); }
.over-copy p strong { color: var(--ink); }
.over-copy h3 { font-size: 1.15rem; margin-top: 2em; }
.timeline { list-style: none; padding: 0; margin: 4px 0 0; }
.timeline li { display: flex; gap: 18px; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: .97rem; }
.timeline li:last-child { border-bottom: none; }
.tl-year { flex: 0 0 auto; font-weight: 800; color: var(--brand-dark); font-variant-numeric: tabular-nums; }
.stats { display: flex; gap: 32px; margin-top: 28px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.7rem; font-weight: 800; color: var(--brand-dark); }
.stat-label { color: var(--ink-soft); font-size: .9rem; }
.over-card { background: var(--ink); color: #fff; border-radius: 20px; padding: 32px; text-align: center; position: sticky; top: 96px; }
.avatar { width: 96px; height: 96px; margin: 0 auto 14px; }
.over-card h3 { margin-bottom: .1em; }
.role { color: var(--brand); font-size: .92rem; margin-bottom: 18px; }
.over-card blockquote { margin: 0 0 18px; font-style: italic; color: #cbd5e1; }
.quote-fix { color: #64748b; font-size: .85rem; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .eyebrow, .contact-info .section-title { text-align: left; }
.contact-info > p:not(.eyebrow):not(.section-title) { color: var(--ink-soft); max-width: 40em; }
.contact-list { display: grid; gap: 18px; margin-top: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-ico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--brand); display: grid; place-items: center; }
.contact-item strong { display: block; margin-bottom: 2px; }
.contact-item address { color: var(--ink-soft); }
.tel-mail { color: var(--brand-dark); text-decoration: none; font-weight: 600; }
.tel-mail:hover { color: var(--brand); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 20px; color: var(--ink-soft); font-size: .95rem; border-bottom: 1px dashed var(--line); padding: 3px 0; }
.hours li:last-child { border-bottom: none; }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px 30px; box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: .2em; }
.form-tip { color: var(--ink-soft); font-size: .95rem; margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: var(--bg); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(245,159,0,.18); }
.form-note { color: #15803d; font-weight: 600; margin: 14px 0 0; font-size: .95rem; }
.form-note.pending { color: var(--brand-dark); }
.form-note.warn { color: #b45309; }
.form-note.ok { color: #15803d; }

/* Footer */
.site-footer { background: #0b1120; color: #94a3b8; padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 40px; padding-bottom: 32px; }
.footer-brand { color: #fff; font-size: 1.2rem; font-weight: 800; }
.footer-brand strong { color: var(--brand); }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { text-decoration: none; color: #94a3b8; }
.footer-nav a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid #1e293b; padding: 18px 24px; text-align: center; font-size: .9rem; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; align-items: center; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; }
.footer-legal a { color: #64748b; text-decoration: none; }
.footer-legal a:hover { color: var(--brand); }

.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 1.4rem; margin: 2.2em 0 .5em; }
.legal h3 { font-size: 1.1rem; margin: 1.6em 0 .4em; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; }
.legal ul { padding-left: 1.2em; margin: .4em 0 1em; }
.legal li { margin-bottom: .35em; }
.legal .updated { color: #94a3b8; font-size: .9rem; margin-top: 18px; }
.steps { list-style: decimal; padding-left: 22px; color: var(--ink-soft); margin: 0; }
.steps li { padding: 6px 0; }

/* Responsive */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; padding: 56px 0 56px; }
  .contact-grid { grid-template-columns: 1fr; }
  .over-grid { grid-template-columns: 1fr; }
  .page-cols { grid-template-columns: 1fr; }
  .over-card { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-band { padding: 44px 0; }

  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px 24px 24px; gap: 6px; border-bottom: 1px solid var(--line);
    display: none; box-shadow: 0 12px 24px rgba(15,23,42,.08);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; margin-top: 8px; }
}
@media (max-width: 640px) {
  .cards, .bikes { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .stats { flex-wrap: wrap; gap: 20px; }
}