:root {
  --paper: #f3efe8;
  --paper-2: #ebe6dd;
  --ink: #111111;
  --ink-soft: #3d3a36;
  --muted: #6e6960;
  --line: #d8d1c6;
  --white: #fbf9f5;
  --accent: #c47a1a;
  --accent-soft: #f4e4c8;
  --swc: #e09a1a;
  --taxi: #1c4b6e;
  --sticker: #1d73bf;
  --taxistijn: #d4a017;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --header: 72px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { left: 8px; }

.serif { font-family: "DM Serif Display", Georgia, serif; letter-spacing: -0.03em; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 13px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px !important;
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}
.menu-btn span::before, .menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

/* Hero */
.hero {
  padding: 72px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  margin: 16px 0 22px;
}
.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--ink);
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn:hover { transform: translateY(-1px); }

.hero-panel {
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-panel p { color: #cfc8bc; font-size: 14px; margin-bottom: 18px; }
.meta-list { display: grid; gap: 14px; }
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2a2a2a;
  font-size: 14px;
}
.meta-row span { color: #9d978c; }
.meta-row strong { font-weight: 600; text-align: right; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin: 48px 0 8px;
}
.stat {
  background: var(--paper);
  padding: 22px 24px;
}
.stat b {
  display: block;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.stat span { color: var(--muted); font-size: 13px; }

/* Sections */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  margin: 10px 0 14px;
}
.section-head p { color: var(--ink-soft); font-size: 17px; }

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.brand-card .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.num { font-size: 13px; color: var(--muted); font-weight: 600; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.brand-card h3 { font-size: 28px; margin-bottom: 10px; }
.brand-card p { color: var(--ink-soft); margin-bottom: 20px; }
.brand-card .foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--paper-2);
}

.offer-grid, .split, .contact-grid, .legal-layout { display: grid; gap: 20px; }
.offer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
.offer, .panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.offer h3, .panel h3 { font-size: 22px; margin: 8px 0 10px; }
.offer p, .panel p { color: var(--ink-soft); }
.price {
  font-size: 34px;
  letter-spacing: -0.04em;
  margin: 18px 0 6px;
}
.price small { font-size: 14px; color: var(--muted); font-family: Inter, sans-serif; }
.list { margin-top: 18px; display: grid; gap: 8px; color: var(--ink-soft); font-size: 14px; }
.list li { list-style: none; padding-left: 18px; position: relative; }
.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 8px;
}

.split { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
.note {
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: 36px;
}
.note h2 { font-size: 36px; margin: 10px 0 14px; }
.note p { color: #cfc8bc; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fact {
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}
.fact b { display: block; margin-bottom: 4px; }

.contact-grid { grid-template-columns: 1fr 1fr; }
.contact-methods { display: grid; gap: 12px; }
.contact-methods a, .contact-methods div {
  display: block;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
}
.contact-methods small { display: block; color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 13px; font-weight: 600; }
input, textarea, select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
button.btn {
  cursor: pointer;
  justify-content: center;
  border: 0;
}

::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.legal-page { padding: 56px 0 96px; }
.legal-page h1 { font-size: clamp(36px, 5vw, 56px); margin: 10px 0 12px; }
.legal-page .meta { color: var(--muted); margin-bottom: 36px; }
.legal-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  max-width: 800px;
}
.legal-content h2 { font-size: 22px; margin: 28px 0 8px; }
.legal-content h3 { font-size: 16px; margin: 18px 0 6px; }
.legal-content p, .legal-content li { color: var(--ink-soft); margin-bottom: 10px; }
.legal-content ul { padding-left: 18px; margin-bottom: 12px; }
.legal-content a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: #111;
  color: #f3efe8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer h4 { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #9d978c; margin-bottom: 14px; }
.footer a, .footer p { color: #d8d1c6; text-decoration: none; display: block; font-size: 14px; margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer .mark { background: #f3efe8; color: #111; }
.footer .brand { color: #f3efe8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid #2a2a2a;
  padding-top: 18px;
  color: #9d978c;
  font-size: 13px;
}

.page-hero { padding: 56px 0 12px; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 0.95; margin: 12px 0 16px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .menu-btn { display: grid; place-items: center; }
  .hero-grid, .brand-grid, .offer-grid, .split, .contact-grid, .footer-grid, .stats, .facts, .form-row {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 36px; }
  section { padding: 64px 0; }
}
