/* ============================================================
   DE MAKKERS GROEP — style.css  v3
   Strak. Consistent. Hard-edged.
   Palet:  zwart #000000 · wit #ffffff · Makkers-oranje #d35401 · grijs #545454/#a6a6a6
   Type:   Anton · Archivo · IBM Plex Mono
   ============================================================ */

:root {
  --ink: #000000;
  --ink-2: #0d0d0d;
  --paper: #ffffff;
  --white: #FFFFFF;
  --orange: #d35401;
  --orange-dark: #b34700;
  --steel: #545454;
  --steel-dark: #a6a6a6;
  --line: #d6d6d6;
  --line-dark: #545454;

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

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

* { 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.6;
  font-size: 16.5px;
  -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;
}

/* ---------- type ---------- */

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

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

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: 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: 0 30px;
  height: 56px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
              transform 0.2s var(--ease);
}

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

.btn:hover { transform: translate(-2px, -2px); }

.btn-solid { background: var(--orange); border-color: var(--ink); color: var(--white); }
.btn-solid:hover { box-shadow: var(--shadow) var(--ink); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { box-shadow: var(--shadow) var(--orange); }

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

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

.nav.scrolled { border-bottom-color: var(--ink); }

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

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

.logo .mark { width: 12px; height: 12px; background: var(--orange); 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.25s 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;
  border: 2px solid var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

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

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

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

.hero {
  position: relative;
  padding: clamp(88px, 11vw, 150px) 0;
  border-bottom: 2px solid var(--ink);
  text-align: center;
}

.hero .wrap > div { max-width: 820px; margin: 0 auto; }

.hero .eyebrow::after {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--orange);
}

.hero h1 {
  font-size: clamp(52px, 8.5vw, 116px);
  margin-top: 28px;
}

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

.hero-sub {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 18.5px;
  color: var(--steel);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-meta {
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 0;
  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; padding: 0 24px; }
.hero-meta li + li { border-left: 1px solid var(--line); }

/* ---------- tape (statisch) ---------- */

.tape {
  background: var(--orange);
  color: var(--white);
  padding: 14px 0;
  border-bottom: 2px solid var(--ink);
}

.tape-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 44px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 var(--pad);
}

.tape-track span { display: inline-flex; align-items: center; }

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

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

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

.dienst {
  position: relative;
  background: var(--white);
  padding: 34px 30px 42px;
  overflow: hidden;
  transition: background 0.25s var(--ease);
}

.dienst::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s 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(--ink);
  padding: 5px 10px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.dienst:hover .tag { background: var(--ink); color: var(--paper); }

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

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

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

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

/* ---------- werkwijze ---------- */

.werkwijze {
  background: var(--ink);
  color: var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

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

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

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

.stap:hover {
  border-color: var(--orange);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow) rgba(211, 84, 1, 0.25);
}

.stap .num {
  font-family: var(--font-display);
  font-size: 56px;
  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: 24px;
  margin-top: 20px;
}

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

.stap .lbl {
  position: absolute;
  top: 32px;
  right: 28px;
  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: 20px;
}

.founder {
  position: relative;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 32px 30px 38px;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.founder:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow) var(--ink); }

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

.founder:hover .initial { -webkit-text-stroke-color: var(--orange); }

.founder h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  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: 15px; color: var(--steel); font-size: 15.5px; position: relative; }

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

.sectoren {
  background: var(--white);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 34px 0;
}

.sectoren-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 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 26px;
}

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

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

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

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

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

.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.15s ease; }
.footer a:hover { color: var(--orange); }

.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 {
  padding: clamp(64px, 9vw, 104px) 0 clamp(48px, 6vw, 72px);
  border-bottom: 2px solid var(--ink);
}

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

.contact-actions-wrap {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

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

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 34px 30px 46px;
  text-decoration: none;
  border: 2px solid var(--ink);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-card:hover { transform: translate(-3px, -3px); }

.card-dark { background: var(--ink); color: var(--paper); }
.card-dark:hover { box-shadow: var(--shadow) var(--orange); }

.card-orange { background: var(--orange); color: var(--white); }
.card-orange:hover { box-shadow: var(--shadow) var(--ink); }

.card-light { background: var(--white); color: var(--ink); }
.card-light:hover { box-shadow: var(--shadow) 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-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.cc-value.cc-email { font-size: 19px; text-transform: lowercase; }

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

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

.contact-card:hover .cc-arr { transform: translateX(5px); }
.card-light .cc-arr { color: var(--orange); }

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

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

.info-block {
  border: 2px solid var(--ink);
  border-left: 6px solid var(--orange);
  background: var(--white);
  padding: 18px 22px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.info-block:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }

.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: 17.5px; font-weight: 600; margin-top: 5px; }
.info-block a { text-decoration: none; }
.info-block a:hover { color: var(--orange); }

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

.legal-hero {
  padding: clamp(56px, 8vw, 92px) 0 clamp(36px, 5vw, 56px);
  border-bottom: 2px solid var(--ink);
}

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

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

.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 23px;
  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-of-type { 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;
}

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

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

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

.reveal.d1 { transition-delay: 0.07s; }
.reveal.d2 { transition-delay: 0.14s; }
.reveal.d3 { transition-delay: 0.21s; }
.reveal.d4 { transition-delay: 0.28s; }
.reveal.d5 { transition-delay: 0.35s; }

/* ---------- 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: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px var(--pad) 28px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .sectoren-inner span { border-left: none !important; padding: 0 14px; }
}

/* ---------- zwevende whatsapp-knop ---------- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34); }

.wa-float svg { width: 26px; height: 26px; fill: #fff; }

@media (max-width: 720px) {
  .wa-float { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}

/* ---------- social icons footer ---------- */

.socials { display: flex; gap: 12px; margin-top: 20px; }

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-dark);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.socials a:hover { border-color: var(--orange); background: var(--orange); }

.socials svg { width: 18px; height: 18px; fill: var(--steel-dark); transition: fill 0.2s ease; }

.socials a:hover svg { fill: #fff; }

/* ---------- logo-afbeelding ---------- */

.logo img { height: 40px; width: auto; display: block; }

.footer .logo img { height: 44px; }

@media (max-width: 720px) {
  .logo img { height: 34px; }
}


/* ---------- extra mobiel-optimalisatie ---------- */

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 60px; }
  .hero h1 { font-size: clamp(42px, 12vw, 56px); }
  .hero-sub { font-size: 17px; margin-top: 22px; }
  .hero-actions { margin-top: 30px; }
  .hero-actions .btn { width: 100%; }
  .section-head h2 { font-size: clamp(30px, 9vw, 40px); }
  .section-head p { font-size: 16px; }
  .dienst { padding: 26px 22px 34px; }
  .dienst h3 { font-size: 23px; }
  .stap, .founder { padding: 26px 22px 30px; }
  .contact-card { padding: 26px 22px 42px; }
  .contact-hero { padding: 56px 0 40px; }
  .contact-hero h1 { font-size: clamp(40px, 11vw, 52px); }
  .contact-actions-wrap { padding-top: 32px; padding-bottom: 64px; }
  .legal-body { padding-top: 40px; padding-bottom: 64px; }
  .footer { padding: 48px 0 32px; }
  .tape-track { gap: 8px 28px; font-size: 12px; }
}
