/* ===== Tokens ===== */
:root {
  --ink: #1B1714;
  --ink-soft: #261F1A;
  --cream: #F3EAD9;
  --cream-dim: #E6D9C2;
  --brass: #C9952B;
  --brass-bright: #E0B154;
  --rust: #9C4221;
  --moss: #57624A;
  --line-dark: rgba(243,234,217,0.14);
  --line-light: rgba(27,23,20,0.12);

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

/* thin brass rule along the very top, like a taxi rooflight strip */
.board-line.top {
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--brass) 0 24px, var(--ink) 24px 48px);
}

/* ===== Header ===== */
.site-header {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brass-bright);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-top: 1px;
}

.contact-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--cream-dim);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.contact-link .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-bright);
  box-shadow: 0 0 0 0 rgba(224,177,84,0.6);
  animation: pulse 2.2s infinite;
}

.contact-link.whatsapp {
  border: 1px solid var(--line-dark);
  padding: 6px 12px;
  border-radius: 20px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,177,84,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(224,177,84,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,177,84,0); }
}

/* ===== Hero ===== */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 84px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,43,0.18), transparent 70%);
}

.hero-inner { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 22px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-bright);
}

.hero-lede {
  max-width: 460px;
  color: var(--cream-dim);
  font-size: 1.05rem;
  margin: 0 0 40px;
}

/* signature: lopende taximeter */
.meter {
  font-family: var(--font-mono);
  max-width: 360px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(243,234,217,0.03);
  margin-bottom: 40px;
}

.meter-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
}

.meter-head {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--cream-dim);
  border-bottom: 1px solid var(--line-dark);
  opacity: 0.7;
}

.meter-live {
  font-size: 1.6rem;
  font-weight: 700;
  align-items: baseline;
  border-bottom: 1px solid var(--line-dark);
}

.meter-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--cream-dim);
  align-self: center;
}

.meter-amount { color: var(--brass-bright); }

.meter-foot {
  font-size: 0.72rem;
  color: var(--cream-dim);
  align-items: center;
}

.meter-pulse {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.meter-pulse i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7FA66B;
  display: inline-block;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.2s ease;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}

.btn-primary:hover { background: var(--brass-bright); transform: translateY(-1px); }

.btn-ghost {
  border-color: var(--line-dark);
  color: var(--cream);
}

.btn-ghost:hover { border-color: var(--brass); color: var(--brass-bright); }

/* ===== Dispatch board (diensten) ===== */
.board { padding: 88px 0 64px; }

.board-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 10px;
}

.board-sub {
  color: rgba(27,23,20,0.62);
  max-width: 520px;
  margin: 0 0 38px;
}

.board-table {
  border: 1px solid var(--line-light);
  border-radius: 10px;
  overflow: hidden;
  background: #FBF6EC;
}

.board-row {
  display: grid;
  grid-template-columns: 64px 1.2fr 2.4fr 24px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  color: var(--ink);
}

.board-row:last-child { border-bottom: none; }

.board-row--head {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(27,23,20,0.5);
  background: rgba(27,23,20,0.03);
}

.board-row--link { transition: background 0.15s ease; cursor: pointer; }
.board-row--link:hover { background: rgba(201,149,43,0.08); }
.board-row--link:hover .row-arrow { transform: translateX(3px); color: var(--rust); }

.code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid var(--brass);
  border-radius: 6px;
}

.service-name { font-weight: 600; }

.desc {
  color: rgba(27,23,20,0.6);
  font-size: 0.92rem;
}

.row-arrow {
  text-align: right;
  color: rgba(27,23,20,0.35);
  font-size: 1.1rem;
  transition: transform 0.15s ease, color 0.15s ease;
}

/* ===== Why strip ===== */
.why {
  background: var(--moss);
  color: var(--cream);
  padding: 56px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-item p {
  margin: 10px 0 0;
  font-size: 0.92rem;
  color: rgba(243,234,217,0.85);
}

.why-num {
  font-family: var(--font-mono);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brass-bright);
}

.why-num small {
  font-size: 0.9rem;
  margin-left: 3px;
  font-weight: 400;
}

/* ===== Booking ticket ===== */
.booking { padding: 88px 0 100px; }

.ticket {
  background: #FBF6EC;
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 0;
  position: relative;
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px dashed rgba(27,23,20,0.25);
  font-family: var(--font-mono);
}

.ticket-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(27,23,20,0.5);
}

.ticket-id { color: var(--rust); font-weight: 700; }

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  padding: 28px;
}

.field-wide { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(27,23,20,0.75);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(27,23,20,0.2);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
}

.field textarea { min-height: 90px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(201,149,43,0.18);
}

.ticket-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px 28px;
  flex-wrap: wrap;
}

.ticket-note {
  font-size: 0.85rem;
  color: rgba(27,23,20,0.55);
}

.ticket-foot .btn-primary { white-space: nowrap; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--cream-dim);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 18px;
}

.footer-inner .brand-name { color: var(--cream); }

.footer-inner p { margin: 6px 0 0; font-size: 0.88rem; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--brass-bright); }

.copyright {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(243,234,217,0.45);
  margin: 0;
}

/* ===== Service subpages ===== */
.service-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.service-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,43,0.16), transparent 70%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--cream-dim);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 28px;
}

.back-link:hover { color: var(--brass-bright); }

.code-badge-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--brass-bright);
  margin-bottom: 18px;
}

.code-badge-lg .code {
  width: 44px;
  height: 32px;
  font-size: 0.95rem;
}

.service-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}

.service-hero .hero-lede {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* feature cards */
.section { padding: 76px 0; }
.section-tight { padding: 0 0 76px; }

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.feature {
  background: #FBF6EC;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 24px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brass);
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 1rem;
}

.feature h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(27,23,20,0.62);
}

/* genuine step sequence (booking process) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 24px 22px 22px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: #FBF6EC;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-bright);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.step h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(27,23,20,0.62);
}

/* route chips (no prices, just named routes) */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 8px 16px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: #FBF6EC;
  color: var(--ink);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin: 0 0 6px;
}


@media (max-width: 760px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .board-row { grid-template-columns: 44px 1fr 20px; }
  .hide-sm { display: none; }
  .ticket-grid { grid-template-columns: 1fr; padding: 22px; }
  .ticket-foot { flex-direction: column; align-items: stretch; }
  .ticket-foot .btn-primary { width: 100%; }
  .footer-inner { flex-direction: column; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-link .dot { animation: none; }
  html { scroll-behavior: auto; }
}