:root {
  --purple: #a43064;
  --purple-dark: #762047;
  --teal: #00af9b;
  --orange: #ef6d00;
  --yellow: #fbdc00;
  --ink: #2a2030;
  --muted: #655b65;
  --paper: #fffaf5;
  --white: #ffffff;
  --line: rgba(42, 32, 48, .12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 80px rgba(96, 28, 59, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 999; background: #fff; padding: 10px 14px; }
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(42,32,48,.05); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; width: 58px; height: 58px; overflow: hidden; border-radius: 12px; box-shadow: 0 8px 24px rgba(164,48,100,.18); }
.brand img { width: 100%; height: 100%; object-fit: cover; }
.main-nav { display: flex; align-items: center; gap: 28px; font-weight: 750; font-size: 15px; }
.main-nav a { text-decoration: none; }
.main-nav a:hover { color: var(--purple); }
.nav-cta { padding: 13px 18px; border-radius: 999px; background: var(--ink); color: #fff !important; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

.hero { position: relative; overflow: clip; padding: 78px 0 110px; }
.hero::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 52%; height: 8px; background: linear-gradient(90deg,var(--yellow),var(--orange),var(--teal),var(--purple)); }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 80px; }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 900; color: var(--purple); }
.hero h1, .section-heading h2, .intro-copy h2, .statement-copy h2, .fit-title h2, .communication-band h2, .contact-card h2 {
  margin: 0; font-size: clamp(44px, 6vw, 78px); line-height: .98; letter-spacing: -.055em; font-weight: 900;
}
.hero h1 span { color: var(--purple); }
.hero-lead { margin: 30px 0 0; font-size: 20px; max-width: 660px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 13px 30px rgba(164,48,100,.22); }
.btn-secondary { border: 2px solid var(--ink); }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 34px; }
.hero-tags span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 800; background: rgba(255,255,255,.55); }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-card { position: relative; z-index: 2; width: min(420px, 82%); transform: rotate(2deg); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); border: 10px solid #fff; }
.logo-card img { width: 100%; }
.float-card { position: absolute; z-index: 3; padding: 15px 18px; border-radius: 18px; box-shadow: 0 18px 44px rgba(42,32,48,.17); display: flex; flex-direction: column; font-size: 14px; }
.float-card strong { font-size: 16px; }
.float-card-a { left: -6px; top: 58px; background: var(--yellow); transform: rotate(-4deg); }
.float-card-b { right: -4px; bottom: 58px; background: var(--teal); color: #fff; transform: rotate(4deg); }
.hero-shape { position: absolute; border-radius: 999px; filter: blur(0); opacity: .15; }
.hero-shape-one { width: 360px; height: 360px; background: var(--orange); right: -160px; top: 120px; }
.hero-shape-two { width: 220px; height: 220px; background: var(--teal); left: -80px; bottom: 10px; }

.intro { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split-intro { display: grid; grid-template-columns: .34fr 1.66fr; gap: 70px; }
.section-kicker { font-weight: 900; font-size: 20px; color: var(--orange); }
.intro-copy h2, .section-heading h2, .statement-copy h2, .fit-title h2, .communication-band h2, .contact-card h2 { font-size: clamp(38px, 5vw, 62px); }
.intro-copy p { max-width: 850px; font-size: 18px; color: var(--muted); }

.services { position: relative; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading p:last-child { font-size: 18px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { position: relative; min-height: 430px; padding: 30px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 54px rgba(42,32,48,.10); }
.service-card h3 { margin: 0 0 14px; font-size: 30px; line-height: 1.05; letter-spacing: -.03em; }
.service-card p { max-width: 560px; }
.service-card ul { padding-left: 20px; margin: 22px 0 0; }
.service-card li { margin: 7px 0; }
.service-card-purple { background: var(--purple); color: #fff; }
.service-card-teal { background: var(--teal); color: #082f2b; }
.service-card-orange { background: var(--orange); color: #351900; }

.statement { background: var(--ink); color: #fff; overflow: hidden; }
.statement-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px; }
.statement-art { min-height: 480px; position: relative; border-radius: 32px; background: var(--purple); overflow: hidden; }
.word { position: absolute; font-weight: 950; letter-spacing: -.07em; line-height: .85; }
.word-one { color: var(--yellow); font-size: clamp(78px, 9vw, 126px); top: 42px; left: 28px; }
.word-two { color: var(--teal); font-size: clamp(92px, 11vw, 150px); top: 165px; left: 25px; }
.word-three { color: var(--orange); font-size: clamp(45px, 5.4vw, 80px); bottom: 45px; left: 26px; transform: rotate(-3deg); }
.statement-copy .eyebrow { color: var(--yellow); }
.statement-copy p { color: rgba(255,255,255,.78); font-size: 18px; }
.quote-mark { color: var(--teal); font-size: 82px; line-height: .6; margin-top: 48px; }
blockquote { margin: 8px 0 0; font-size: 24px; line-height: 1.4; font-weight: 760; }

.approach { background: #fff; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { padding: 30px 26px; border-top: 5px solid var(--purple); background: var(--paper); border-radius: 0 0 20px 20px; }
.step:nth-child(2) { border-color: var(--teal); }
.step:nth-child(3) { border-color: var(--orange); }
.step span { font-size: 13px; font-weight: 950; opacity: .5; }
.step h3 { font-size: 23px; margin: 28px 0 12px; }
.step p { margin: 0; color: var(--muted); }

.communication-band { background: var(--purple); color: #fff; position: relative; overflow: hidden; }
.communication-band::after { content:""; width: 350px; height: 350px; position:absolute; right:-80px; bottom:-160px; border-radius:50%; border: 55px solid var(--yellow); opacity:.18; }
.communication-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.eyebrow-light { color: var(--yellow); }
.communication-band p { color: rgba(255,255,255,.82); font-size: 18px; }
.communication-points { display: grid; gap: 14px; }
.communication-points div { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 18px 20px; }
.communication-points strong, .communication-points span { display:block; }
.communication-points strong { font-size: 18px; }
.communication-points span { color: rgba(255,255,255,.72); margin-top: 4px; }

.fit-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.fit-list { border-top: 1px solid var(--line); }
.fit-item { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.fit-item span { color: var(--orange); font-size: 26px; font-weight: 950; }
.fit-item p { margin: 0; font-size: 18px; }

.contact { padding-top: 40px; }
.contact-card { background: var(--teal); color: #083d37; border-radius: var(--radius-lg); padding: 60px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; box-shadow: var(--shadow); }
.contact-card .eyebrow { color: #083d37; opacity: .7; }
.contact-card p { font-size: 18px; max-width: 720px; }
.contact-action { border-left: 1px solid rgba(8,61,55,.22); padding-left: 44px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.contact-label { margin: 0 !important; font-weight: 900; }
.contact-placeholder { font-size: 14px !important; opacity: .75; margin: 3px 0 22px !important; }
.btn-light { background: #fff; color: var(--ink); }

.site-footer { padding: 54px 0; background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; align-items: end; }
.footer-brand img { width: 72px; border-radius: 12px; }
.footer-brand p { margin: 10px 0 0; color: var(--muted); }
.footer-links { display: grid; gap: 6px; }
.footer-links a { text-decoration: none; font-weight: 700; }
.footer-meta { color: var(--muted); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 78px; left: 20px; right: 20px; padding: 20px; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero-grid, .statement-grid, .communication-grid, .fit-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 30px; }
  .hero-visual { min-height: 500px; }
  .split-intro { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .statement-grid, .communication-grid, .fit-grid { gap: 45px; }
  .contact-action { border-left: 0; border-top: 1px solid rgba(8,61,55,.22); padding: 30px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 50px; }
  .hero-lead { font-size: 18px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 410px; }
  .float-card { max-width: 180px; }
  .service-card { padding: 26px; min-height: auto; }
  .statement-art { min-height: 390px; }
  .contact-card { padding: 38px 26px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-meta { grid-column: auto; }
}

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

.statement-logo { display:flex; align-items:center; justify-content:center; padding:0; background:#118c4f; }
.statement-logo img { width:100%; height:100%; object-fit:cover; display:block; }

/* De Kern: lichtere themakleur in plaats van het donkere vlak */
.statement { background: #efd1df; color: var(--ink); }
.statement .eyebrow { color: var(--purple-dark); }
.statement blockquote { color: var(--ink); }
.statement-logo { background: #118c4f; }

/* Requested text colour refinements */
.service-card,
.service-card h3,
.service-card p,
.service-card ul,
.service-card li {
  color: #fff;
}

.statement-copy > p:not(.eyebrow) {
  color: #000;
}

/* Over ons */
.main-nav a[aria-current="page"] { color: var(--purple); }
.about-hero { padding-top: 72px; overflow: hidden; }
.about-hero-grid { display:grid; grid-template-columns: 1.02fr .98fr; gap:80px; align-items:center; }
.about-copy h1 { margin:0; font-size:clamp(46px,6vw,76px); line-height:.98; letter-spacing:-.055em; font-weight:900; }
.about-copy h1 span { color:var(--purple); }
.about-copy > p:not(.eyebrow) { font-size:18px; color:var(--muted); max-width:690px; }
.about-copy .about-lead { font-size:21px !important; color:var(--ink) !important; margin-top:28px; }
.about-copy .btn { margin-top:18px; }
.about-photo-wrap { position:relative; max-width:375px; justify-self:end; }
.about-photo { border-radius:34px; overflow:hidden; box-shadow:var(--shadow); border:10px solid #fff; background:#fff; }
.about-photo img { width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center 24%; }
.about-name-card { position:absolute; left:-38px; bottom:38px; background:#118c4f; color:#ffffff; padding:17px 22px; border-radius:18px; box-shadow:0 18px 44px rgba(42,32,48,.17); transform:rotate(-2deg); display:flex; flex-direction:column; }
.about-name-card strong { font-size:19px; }
.about-name-card span { font-size:13px; font-weight:750; }
.about-story { background:#fff; border-block:1px solid var(--line); }
.about-story-grid { display:grid; grid-template-columns:.34fr 1.66fr; gap:70px; }
.about-story h2 { margin:0 0 22px; font-size:clamp(38px,5vw,62px); line-height:1; letter-spacing:-.045em; }
.about-story p { max-width:850px; font-size:18px; color:var(--muted); }
.about-value-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.about-value { min-height:270px; padding:30px; border-radius:var(--radius-md); color:#fff; }
.about-value h3 { margin:0 0 18px; font-size:30px; line-height:1.05; }
.about-value p { margin:0; font-size:17px; }
.value-purple { background:var(--purple); }
.value-teal { background:var(--teal); }
.value-orange { background:var(--orange); }
.experience-band { background:var(--purple); color:#fff; }
.experience-grid { display:grid; grid-template-columns:1fr 1fr; gap:70px; }
.experience-grid h2 { margin:0; font-size:clamp(38px,5vw,62px); line-height:1; letter-spacing:-.045em; }
.experience-list { display:grid; gap:14px; }
.experience-list div { padding:18px 20px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.16); border-radius:18px; }
.experience-list strong,.experience-list span { display:block; }
.experience-list strong { font-size:18px; }
.experience-list span { color:rgba(255,255,255,.78); margin-top:3px; }
.about-cta { padding-top:70px; }
.linkedin-link { margin-top:18px; font-weight:850; text-decoration:none; border-bottom:2px solid currentColor; }
@media(max-width:900px){.about-hero-grid,.about-story-grid,.experience-grid{grid-template-columns:1fr;gap:42px}.about-photo-wrap{justify-self:center}.about-value-grid{grid-template-columns:1fr}.about-name-card{left:18px}.about-story-grid{gap:20px}}

/* Contactgegevens */
.contact-details { display:grid; gap:12px; margin:12px 0 24px; }
.contact-detail { display:flex; align-items:center; gap:12px; color:inherit; text-decoration:none; font-weight:750; }
.contact-icon { display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; flex:0 0 28px; color:#000; font-size:20px; line-height:1; }
.kvk-icon { font-size:18px; }
a.contact-detail:hover span:last-child { text-decoration:underline; }


/* Cookie-informatie */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(42,32,48,.18);
  transition: opacity .22s ease, transform .22s ease;
}
.cookie-banner.is-closing { opacity: 0; transform: translateY(12px); }
.cookie-banner-inner { display:flex; align-items:center; justify-content:space-between; gap:28px; padding:22px 24px; }
.cookie-copy strong { display:block; margin-bottom:5px; font-size:18px; }
.cookie-copy p { margin:0; max-width:720px; color:var(--muted); font-size:14px; line-height:1.55; }
.cookie-actions { display:flex; align-items:center; gap:16px; flex:0 0 auto; }
.cookie-link { color:var(--purple); font-weight:800; text-decoration:none; border-bottom:1px solid currentColor; }
.cookie-close { appearance:none; border:0; border-radius:999px; background:var(--purple); color:#fff; padding:12px 18px; font:inherit; font-weight:850; cursor:pointer; }
.cookie-close:hover { filter:brightness(.96); }
.cookie-close:focus-visible,.cookie-link:focus-visible { outline:3px solid var(--teal); outline-offset:3px; }

/* Cookieverklaring */
.legal-page { padding-top:72px; }
.legal-hero { max-width:820px; }
.legal-hero h1 { margin:0 0 22px; font-size:clamp(44px,6vw,72px); line-height:.98; letter-spacing:-.05em; }
.legal-hero > p:not(.eyebrow) { font-size:19px; color:var(--muted); }
.legal-content { max-width:900px; margin-top:54px; }
.legal-section { padding:28px 0; border-top:1px solid var(--line); }
.legal-section h2 { margin:0 0 14px; font-size:30px; }
.legal-section h3 { margin:24px 0 8px; font-size:20px; }
.legal-section p,.legal-section li { color:var(--muted); font-size:17px; line-height:1.7; }
.legal-section ul { padding-left:20px; }
.cookie-table { width:100%; border-collapse:collapse; margin:18px 0 6px; font-size:15px; }
.cookie-table th,.cookie-table td { text-align:left; vertical-align:top; padding:14px; border:1px solid var(--line); }
.cookie-table th { background:#f7f3f6; color:var(--ink); }
.cookie-table td { color:var(--muted); }
.legal-contact { background:#f5e8ef; border-radius:22px; padding:24px; margin-top:18px; }
.legal-contact a { color:inherit; font-weight:800; }

@media (max-width: 760px) {
  .cookie-banner { left:12px; right:12px; bottom:12px; }
  .cookie-banner-inner { align-items:flex-start; flex-direction:column; gap:16px; padding:20px; }
  .cookie-actions { width:100%; justify-content:space-between; }
  .cookie-link { font-size:14px; }
  .cookie-table { display:block; overflow-x:auto; }
}
