/* ============================================================
   MARCEL ZWEEDIJK — Full-Funnel Marketing Consultant
   Kleuren uit het logo: zwart #000 · geel #FFDE59 · overlap #C4AA44
   Geen externe requests: fonts staan lokaal in /fonts.
   ============================================================ */

/* ---------- Fonts (self-hosted, OFL) ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-black-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-black-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --black: #0b0b0b;
  --ink: #1a1a1a;
  --yellow: #FFDE59;
  --yellow-deep: #C4AA44;
  --paper: #ffffff;
  --off: #f6f4ee;
  --grey: #6b6b6b;
  --line: #e6e2d8;
  --radius: 20px;
  --maxw: 1180px;
  --font-head: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible { outline: 3px solid var(--yellow-deep); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 800px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--yellow); color: var(--black); padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); text-transform: uppercase; }
h3 { font-size: 1.15rem; line-height: 1.3; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 18px;
}
.kicker::before {
  content: ""; width: 26px; height: 14px; flex: none;
  background:
    radial-gradient(circle 7px at 7px 7px, var(--black) 6.5px, transparent 7px),
    radial-gradient(circle 7px at 19px 7px, var(--yellow) 6.5px, transparent 7px);
}
.kicker--light { color: var(--paper); }
.kicker--light::before {
  background:
    radial-gradient(circle 7px at 7px 7px, var(--paper) 6.5px, transparent 7px),
    radial-gradient(circle 7px at 19px 7px, var(--yellow) 6.5px, transparent 7px);
}

.hl { background: linear-gradient(transparent 55%, var(--yellow) 55%, var(--yellow) 92%, transparent 92%); padding: 0 2px; }
.yellow { color: var(--yellow); }

.lead { font-size: 1.2rem; color: var(--ink); max-width: 46em; }
.muted { color: var(--grey); }
.prose p + p { margin-top: 20px; }
.prose p { max-width: 42em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 700; text-decoration: none;
  padding: 15px 30px; border-radius: 999px; font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  border: 2px solid var(--black); cursor: pointer; font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { box-shadow: 0 10px 25px rgba(255, 222, 89, .45); }
.btn-dark { background: var(--black); color: #fff; border-color: var(--black); }
.btn-dark:hover { box-shadow: 0 10px 25px rgba(0,0,0,.25); }
.btn-ghost { background: transparent; color: var(--black); }
.btn-ghost:hover { background: var(--black); color: #fff; }
.btn-ghost--light { border-color: #fff; color: #fff; background: transparent; }
.btn-ghost--light:hover { background: #fff; color: var(--black); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 20px;
}

/* Logo: merkteken + woordmerk in echte tekst (scherp op elk scherm) */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.logo .mark { width: 46px; height: 25px; flex: none; }
.logo .wordmark { display: block; line-height: 1; }
.logo .name {
  font-family: var(--font-head); font-size: 1.12rem; letter-spacing: -0.01em;
  text-transform: uppercase; display: block;
}
.logo .role {
  display: block; font-size: .565rem; font-weight: 700; letter-spacing: .155em;
  text-transform: uppercase; color: var(--grey); margin-top: 4px;
}
.site-footer .logo .name { color: #fff; }
.site-footer .logo .role { color: var(--yellow); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none; font-weight: 600; font-size: .96rem;
  padding: 6px 2px; position: relative; white-space: nowrap;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 3px; background: var(--yellow); transition: right .2s ease;
}
.nav a:not(.btn):hover::after, .nav a.active::after { right: 0; }
.nav .btn { padding: 10px 22px; font-size: .92rem; }

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

/* ---------- Hero ---------- */
.hero { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; padding-top: 88px; padding-bottom: 96px; }
.hero-circles {
  position: absolute; right: -140px; top: -120px; width: 560px; height: 560px;
  pointer-events: none; opacity: .9;
}
.hero h1 { max-width: 13em; font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
.hero p.lead { color: #d9d9d9; margin: 28px 0 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: .9rem; color: #9a9a9a; }

/* Beschikbaarheidsbadge */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid #333; border-radius: 999px; padding: 7px 18px 7px 14px;
  font-size: .84rem; font-weight: 600; color: #e2e2e2; margin-bottom: 24px;
  background: rgba(255,255,255,.04);
}
.badge .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--yellow); flex: none;
  box-shadow: 0 0 0 0 rgba(255,222,89,.75); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(255,222,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,222,89,0); }
}

/* ---------- Merkenstrip ---------- */
.brandstrip { background: var(--yellow); padding: 26px 0; }
.brandstrip .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 34px; justify-content: center; }
.brandstrip .label { font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; flex-basis: 100%; text-align: center; margin-bottom: 4px; }
.brandstrip span.brand { font-family: var(--font-head); font-size: 1.02rem; white-space: nowrap; }

/* ---------- Secties ---------- */
section.block { padding: 96px 0; }
section.block--off { background: var(--off); }
section.block--dark { background: var(--black); color: #fff; }
section.block--dark .muted { color: #a8a8a8; }
section.block--tight { padding: 64px 0; }
.section-head { max-width: 800px; margin-bottom: 56px; }
.section-head p { margin-top: 16px; }

/* ---------- Kaarten / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.card h3 { margin: 18px 0 10px; }
.card p { font-size: .97rem; color: var(--grey); }
.card .num {
  font-family: var(--font-head); font-size: .95rem;
  width: 44px; height: 44px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center; color: var(--black);
}
.card-dark { background: #161616; border-color: #2a2a2a; color: #fff; }
.card-dark p { color: #a8a8a8; }

.icon-circles { width: 46px; height: 28px; }

/* ---------- Split (tekst + beeld) ---------- */
.imgbox {
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--black) 0%, var(--black) 48%, var(--yellow) 48%, var(--yellow) 100%);
  min-height: 220px;
}
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .imgbox { position: relative; }
.split .imgbox img {
  border-radius: var(--radius); filter: grayscale(1) contrast(1.05);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
}
.split .imgbox--portrait img { aspect-ratio: 1/1; object-position: center 22%; }
.split .imgbox::after {
  content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: var(--yellow); mix-blend-mode: multiply;
  right: -28px; bottom: -28px; z-index: 2;
}
ul.checks { list-style: none; margin-top: 22px; }
ul.checks li { padding-left: 34px; position: relative; margin-bottom: 14px; }
ul.checks li::before {
  content: "\25CF"; position: absolute; left: 6px; color: var(--yellow-deep); font-size: .8rem; top: 4px;
}
ul.checks li strong { display: block; }
section.block--dark ul.checks li::before { color: var(--yellow); }

/* ---------- Funnel-diagram ---------- */
.funnel { display: flex; flex-direction: column; gap: 12px; }
.funnel-row {
  display: grid; grid-template-columns: 54px 1fr; gap: 20px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 22px 26px; position: relative; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.funnel-row:hover { transform: translateX(4px); box-shadow: 0 14px 32px rgba(0,0,0,.07); }
.funnel-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--yellow);
}
.funnel-row .fnum {
  font-family: var(--font-head); font-size: .9rem; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--black);
}
.funnel-row h3 { margin-bottom: 4px; }
.funnel-row p { font-size: .97rem; color: var(--grey); }
.funnel-row:nth-child(1) { margin-right: 0; }
.funnel-row:nth-child(2) { margin-right: 3%; }
.funnel-row:nth-child(3) { margin-right: 6%; }
.funnel-row:nth-child(4) { margin-right: 9%; }
.funnel-row:nth-child(1) .fnum { background: var(--black); color: #fff; }
.funnel-row:nth-child(2) .fnum { background: var(--yellow-deep); color: #fff; border-color: var(--yellow-deep); }
.funnel-row:nth-child(3) .fnum { background: var(--yellow); border-color: var(--yellow); }
.funnel-row:nth-child(4) .fnum { background: #fff; }

/* ---------- Inhuurvormen ---------- */
/* De kaarten staan op een donkere sectie; kleuren worden daarom expliciet gezet
   zodat ze niet de witte tekstkleur van de sectie erven. */
.plan {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 36px; display: flex; flex-direction: column; position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 26px 50px rgba(0,0,0,.35); }
.plan--featured { border: 3px solid var(--yellow); box-shadow: 0 26px 50px rgba(0,0,0,.35); }
.plan .flag {
  position: absolute; top: -13px; left: 30px; background: var(--yellow); color: var(--black);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
}
.plan .days, .plan h3, .plan li { color: var(--ink); }
.plan .btn-ghost { border-color: var(--black); color: var(--black); }
.plan .btn-ghost:hover { background: var(--black); color: #fff; }
.plan .days { font-family: var(--font-head); font-size: 2.6rem; line-height: 1; }
.plan .days span { font-size: 1rem; display: block; margin-top: 8px; letter-spacing: .12em; text-transform: uppercase; }
.plan h3 { margin: 20px 0 10px; }
.plan p { color: var(--grey); font-size: .97rem; }
.plan ul { list-style: none; margin: 20px 0 26px; }
.plan li { padding-left: 26px; position: relative; margin-bottom: 10px; font-size: .96rem; }
.plan li::before { content: "\25CF"; position: absolute; left: 4px; top: 3px; color: var(--yellow-deep); font-size: .7rem; }
.plan .btn { margin-top: auto; text-align: center; }

/* ---------- Stappen ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding: 34px 30px; }
.step h3 { margin: 16px 0 8px; }

/* ---------- Quote ---------- */
.quoteblock { max-width: 860px; margin: 0 auto; text-align: center; }
.quoteblock blockquote { font-family: var(--font-head); font-size: clamp(1.25rem, 2.5vw, 1.85rem); line-height: 1.35; }
.quoteblock cite { display: block; margin-top: 22px; font-style: normal; color: var(--grey); font-size: .95rem; }
.quoteblock .qmark { color: var(--yellow); font-size: 3rem; line-height: 0; }

/* ---------- CTA-band ---------- */
.cta-band { background: var(--yellow); }
.cta-band .wrap {
  padding: 80px 24px; display: flex; flex-wrap: wrap; gap: 30px;
  align-items: center; justify-content: space-between;
}
.cta-band h2 { max-width: 14em; }
.cta-band p { margin-top: 10px; max-width: 34em; }

/* ---------- Paginahero (subpagina's) ---------- */
.page-hero { background: var(--black); color: #fff; position: relative; overflow: hidden; }
.page-hero .wrap { padding: 76px 24px 84px; position: relative; z-index: 2; }
.page-hero h1 { max-width: 15em; }
.page-hero p.lead { color: #d9d9d9; margin-top: 22px; }

/* ---------- Dienstenrijen ---------- */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 72px 0; border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 0; }
.service-row.flip .txt { order: 2; }
.service-row .imgbox img {
  border-radius: var(--radius); filter: grayscale(1) contrast(1.05);
  aspect-ratio: 16/11; object-fit: cover; width: 100%;
}
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag {
  border: 1.5px solid var(--black); border-radius: 999px; padding: 6px 16px;
  font-size: .85rem; font-weight: 600;
}
.tag--fill { background: var(--yellow); border-color: var(--yellow); }

/* ---------- Cases ---------- */
.case-card { overflow: hidden; display: flex; flex-direction: column; }
.case-card .meta { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow-deep); margin-bottom: 10px; }
.case-card h3 { margin: 0 0 12px; }
.case-card .kern {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: .93rem; color: var(--ink);
}
.case-card .kern strong { display: block; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow-deep); margin-bottom: 4px; }

.brand-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.brand-cloud span {
  font-family: var(--font-head); font-size: 1rem; padding: 12px 22px;
  border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
}

.stat { text-align: left; }
.stat .n { font-family: var(--font-head); font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--yellow); line-height: 1; }
.stat .l { margin-top: 8px; color: #a8a8a8; font-size: .95rem; }
section.block:not(.block--dark) .stat .n { color: var(--black); }
section.block:not(.block--dark) .stat .l { color: var(--grey); }

/* ---------- Tijdlijn ---------- */
.timeline { list-style: none; border-left: 2px solid var(--line); padding-left: 30px; margin-left: 6px; }
.timeline li { position: relative; padding-bottom: 34px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: -39px; top: 7px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--yellow); border: 2px solid var(--black);
}
.timeline time {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--yellow-deep); margin-bottom: 4px;
}
.timeline strong { display: block; font-family: var(--font-head); font-size: 1.08rem; text-transform: uppercase; }
.timeline p { color: var(--grey); font-size: .97rem; margin-top: 6px; max-width: 44em; }

/* ---------- Awards ---------- */
.award { display: grid; grid-template-columns: 78px 1fr; gap: 22px; align-items: start; }
.award .yr {
  font-family: var(--font-head); font-size: 1.5rem; width: 78px; height: 78px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center; color: var(--black);
}
.award h3 { margin-bottom: 6px; }
.award p { color: var(--grey); font-size: .97rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line); padding: 4px 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 46px 22px 0; position: relative;
  font-family: var(--font-head); font-size: 1.05rem; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(var(--black), var(--black)) center/14px 2.5px no-repeat,
    linear-gradient(var(--black), var(--black)) center/2.5px 14px no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--grey); padding-bottom: 24px; max-width: 62em; }
.faq details p + p { margin-top: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info .item { margin-bottom: 26px; }
.contact-info .item strong { display: block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info a { text-decoration: none; font-weight: 600; }
.contact-info a:hover { background: var(--yellow); }

form.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .85rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 1rem; background: var(--off); color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--black); background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #fff; padding: 70px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.site-footer h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; color: var(--yellow); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #c9c9c9; text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-about { color: #a8a8a8; font-size: .95rem; margin-top: 16px; max-width: 30em; }
.footer-bottom {
  border-top: 1px solid #262626; padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  color: #8a8a8a; font-size: .88rem;
}

/* ---------- Reveal ----------
   Alleen actief als JavaScript draait (html.js). Zonder JS blijft alles gewoon zichtbaar. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav { gap: 20px; }
  .logo .role { display: none; }
}
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split, .service-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-row.flip .txt { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-circles { opacity: .35; }
  .funnel-row { margin-right: 0 !important; }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section.block { padding: 68px 0; }
  .form-row { grid-template-columns: 1fr; }
  form.contact-form { padding: 26px 20px; }
  .funnel-row { grid-template-columns: 1fr; gap: 14px; }
  .logo .role { display: block; }

  .nav {
    position: fixed; inset: 78px 0 auto 0; background: #fff;
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 10px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .25s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--off); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 16px; text-align: center; }
  .nav-toggle { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .cta-band, .nav-toggle { display: none; }
  body { font-size: 12pt; }
}

/* ---------- Formulier-meldingen ---------- */
.formnote { border-radius: 14px; padding: 18px 22px; margin-bottom: 26px; font-size: .95rem; }
.formnote--ok { background: var(--yellow); border: 1px solid var(--yellow-deep); }
.formnote--err { background: #fdecec; border: 1px solid #e9b4b4; }
