/* ============================================================
   DE MAKKERS GROEP — style.css  v2
   Palet:  ink #131619 · paper #F5F5F1 · oranje #FF5A1F
           steel #70777F · line #E0E1DB
   Type:   Anton (display) · Archivo (body) · IBM Plex Mono (labels)
   ============================================================ */

:root {
  --ink: #131619;
  --ink-2: #1C2025;
  --paper: #F5F5F1;
  --white: #FFFFFF;
  --orange: #FF5A1F;
  --orange-dark: #E5490F;
  --steel: #70777F;
  --steel-dark: #9AA1A9;
  --line: #E0E1DB;
  --line-dark: #2B3138;

  --font-display: 'Anton', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max: 1200px;
  --pad: clamp(20px, 4.5vw, 56px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: var(--white); }

img { max-width: 100%; display: block; }
a { color: inherit; }
section { scroll-margin-top: 84px; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- typographic utilities ---------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.96;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--orange);
}

.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }

.section-head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 72px); }

.section-head h2 {
  font-size: clamp(38px, 5.5vw, 64px);
  margin-top: 18px;
}

.section-head p {
  margin-top: 18px;
  color: var(--steel);
  font-size: 18px;
  max-width: 540px;
}

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 30px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn .arr { transition: transform 0.25s var(--ease); font-family: var(--font-body); }
.btn:hover .arr { transform: translateX(5px); }

.btn-solid { background: var(--orange); border-color: var(--orange); color: var(--white); }
.btn-solid:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 241, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(19, 22, 25, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo .mark {
  width: 13px;
  height: 13px;
  background: var(--orange);
  display: inline-block;
  flex: none;
}

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }

.nav-links a:not(.nav-cta) {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  transition: background 0.25s var(--ease);
}

.nav-cta:hover { background: var(--orange); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(72px, 9vw, 130px) 0 clamp(72px, 9vw, 120px);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 40%, transparent 30%, var(--paper) 100%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(56px, 9.5vw, 136px);
  margin-top: 26px;
}

.hero h1 .accent { color: var(--orange); }

.hero-sub {
  margin-top: 30px;
  max-width: 540px;
  font-size: 19px;
  color: var(--steel);
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-meta {
  margin-top: 58px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 38px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  list-style: none;
}

.hero-meta li { display: flex; align-items: center; gap: 9px; }
.hero-meta li::before { content: "■"; color: var(--orange); font-size: 8px; }

/* --- werkbon ticket (signatuur) --- */

.ticket-col { display: flex; justify-content: flex-end; }

.ticket {
  width: min(380px, 100%);
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  box-shadow: 14px 14px 0 var(--orange);
  transform: rotate(1.2deg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.ticket:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 18px 18px 0 var(--orange); }

.ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px dashed var(--line-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticket-head .no { color: var(--orange); }

.ticket-body { padding: 24px; display: grid; gap: 18px; }

.ticket-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }

.ticket-row .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-dark);
  flex: none;
}

.ticket-row .v {
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: right;
}

.ticket-foot {
  padding: 16px 24px 20px;
  border-top: 1px dashed var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 6px 12px;
  transform: rotate(-3deg);
}

.ticket-foot .barcode {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 22px;
}

.ticket-foot .barcode i {
  display: block;
  width: 3px;
  height: 100%;
  background: var(--paper);
}

.ticket-foot .barcode i:nth-child(2n) { height: 70%; width: 2px; }
.ticket-foot .barcode i:nth-child(3n) { height: 85%; }

/* ---------- tape marquee ---------- */

.tape {
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
  padding: 13px 0;
}

.tape-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: tape-scroll 30s linear infinite;
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.tape-track span { display: inline-flex; align-items: center; gap: 56px; }
.tape-track span::after { content: "▪"; font-size: 11px; opacity: 0.85; }

@keyframes tape-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- diensten ---------- */

.diensten { background: var(--white); }

.dienst-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.dienst {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  margin: -0.5px;
  padding: 36px 32px 40px;
  overflow: hidden;
  transition: background 0.3s var(--ease);
}

.dienst::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.dienst:hover::before { transform: scaleX(1); }
.dienst:hover { background: var(--paper); }

.dienst .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  display: inline-block;
  border: 1px solid var(--line);
  padding: 5px 10px;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.dienst:hover .tag { border-color: var(--orange); color: var(--orange); }

.dienst h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 27px;
  line-height: 1.08;
  margin-top: 18px;
}

.dienst p { margin-top: 14px; color: var(--steel); font-size: 16px; }

.dienst .go {
  position: absolute;
  right: 26px;
  bottom: 22px;
  font-size: 22px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.dienst:hover .go { opacity: 1; transform: translateX(0); }

/* ---------- werkwijze (dark) ---------- */

.werkwijze {
  background: var(--ink);
  color: var(--paper);
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 56px 56px;
}

.werkwijze .eyebrow { color: var(--paper); }
.werkwijze .section-head p { color: var(--steel-dark); }

.stappen {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.stap {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  padding: 34px 30px 38px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.stap:hover { border-color: var(--orange); transform: translateY(-4px); }

.stap .num {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}

.stap h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 25px;
  margin-top: 20px;
}

.stap p { margin-top: 12px; color: var(--steel-dark); font-size: 16px; }

.stap .lbl {
  position: absolute;
  top: 34px;
  right: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-dark);
}

/* ---------- over ons ---------- */

.founders {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.founder {
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 34px 30px 38px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.founder:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(19,22,25,0.08); }

.founder .initial {
  position: absolute;
  top: -34px;
  right: -12px;
  font-family: var(--font-display);
  font-size: 170px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.3s var(--ease);
}

.founder:hover .initial { -webkit-text-stroke-color: #FFD9C8; }

.founder h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 27px;
  position: relative;
}

.founder .rol {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 8px;
  position: relative;
}

.founder p { margin-top: 16px; color: var(--steel); font-size: 16px; position: relative; }

/* ---------- sectoren strip ---------- */

.sectoren {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 38px 0;
}

.sectoren-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
  align-items: center;
  justify-content: center;
}

.sectoren-inner span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  padding: 0 28px;
}

.sectoren-inner span + span { border-left: 1px solid var(--line); }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    var(--ink) 0 14px,
    var(--orange) 14px 28px
  );
}

.cta-band .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.cta-band h2 {
  font-size: clamp(38px, 5.5vw, 68px);
  max-width: 620px;
}

.cta-band h2 .out {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.cta-band .btn { border-color: var(--white); color: var(--white); background: transparent; }
.cta-band .btn:hover { background: var(--white); color: var(--orange); transform: translateY(-2px); }

/* ---------- footer ---------- */

.footer {
  background: var(--ink);
  color: var(--steel-dark);
  padding: 72px 0 40px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  position: relative;
}

.footer .logo { color: var(--paper); font-size: 21px; }

.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 16px;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 9px; }
.footer a { text-decoration: none; transition: color 0.2s ease; }
.footer a:hover { color: var(--orange); }

.footer-word {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 160px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-dark);
  white-space: nowrap;
  margin-top: 64px;
  user-select: none;
  pointer-events: none;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 28px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ---------- contactpagina ---------- */

.contact-hero {
  position: relative;
  padding: clamp(64px, 9vw, 110px) 0 clamp(44px, 6vw, 68px);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 30% 30%, transparent 25%, var(--paper) 100%);
  pointer-events: none;
}

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

.contact-hero h1 {
  font-size: clamp(48px, 8.5vw, 104px);
  margin-top: 22px;
}

.contact-hero .hero-sub { margin-top: 24px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(72px, 10vw, 130px);
  align-items: start;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 12px 12px 0 var(--ink);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 18px;
  margin-bottom: 26px;
}

.form-head .no { color: var(--orange); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 9px;
  color: var(--ink-2);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 15px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--steel); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15);
}

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

.form .btn { width: 100%; justify-content: center; border: none; }

.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 26px;
}

.info-block {
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  background: var(--white);
  padding: 18px 22px;
  margin-bottom: 16px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.info-block:hover { transform: translateX(4px); box-shadow: 0 10px 26px rgba(19,22,25,0.07); }

.info-block .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.info-block .val { font-size: 18px; font-weight: 600; margin-top: 5px; }
.info-block a { text-decoration: none; }
.info-block a:hover { color: var(--orange); }

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tape-track { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .ticket-col { justify-content: flex-start; }
  .ticket { transform: rotate(0); }
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form { box-shadow: 8px 8px 0 var(--ink); }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px var(--pad) 28px;
    gap: 20px;
    box-shadow: 0 18px 30px rgba(19,22,25,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .sectoren-inner span { border-left: none !important; padding: 0 14px; }
}

/* ---------- contact actiekaarten (v3, geen formulier) ---------- */

.contact-actions-wrap {
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(72px, 10vw, 130px);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px 32px 44px;
  text-decoration: none;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(19,22,25,0.14); }

.card-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.card-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.card-light { background: var(--white); color: var(--ink); }

.cc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
}

.cc-value {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.05;
  word-break: break-word;
}

.cc-note { font-size: 15px; opacity: 0.75; }

.cc-arr {
  position: absolute;
  right: 28px;
  bottom: 24px;
  font-size: 24px;
  transition: transform 0.3s var(--ease);
}

.contact-card:hover .cc-arr { transform: translateX(6px); }

.card-light .cc-arr { color: var(--orange); }

.contact-details {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.contact-details .info-block { margin-bottom: 0; }

/* ---------- juridische pagina's ---------- */

.legal-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 { font-size: clamp(40px, 7vw, 84px); margin-top: 20px; }

.legal-hero .hero-sub { margin-top: 20px; }

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--pad) clamp(72px, 10vw, 120px);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.legal-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.legal-body h2 .art {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--orange);
  flex: none;
}

.legal-body p { margin-top: 14px; color: var(--ink-2); }

.legal-body ul { margin: 14px 0 0 22px; color: var(--ink-2); }
.legal-body li { margin-bottom: 8px; }

.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 32px;
}
