/* Sollicitatie Content Marketeer - Dolmans kleuren */
@font-face {
  font-family: "PaybAck";
  src: url("../assets/PaybAck.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --d-red: #e33422;
  --d-red-deep: #751a12;
  --d-red-mid: #d22e20;
  --d-charcoal: #323232;
  --d-charcoal-alt: #404040;
  --d-ink: #ffffff;
  --d-muted: rgba(255, 255, 255, 0.72);
  --d-line: rgba(255, 255, 255, 0.12);
  --d-paper: #323232;
  --d-white: #ffffff;
  --d-surface: #3a3a3a;
  --font-display: "PaybAck", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --max: 1088px;
  --radius: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--d-ink);
  background: var(--d-charcoal);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; color: #fff; }

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(50, 50, 50, 0.92);
  border-bottom: 1px solid var(--d-line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}
.topbar__brand {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}
.topbar__brand span { color: var(--d-red); }
.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1rem;
  flex: 1 1 auto;
}
.topbar__nav a {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.15s;
}
.topbar__nav a:hover { color: #fff; }
.topbar__actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .topbar__inner { justify-content: center; }
  .topbar__nav { order: 3; width: 100%; justify-content: center; padding-top: 0.35rem; }
  .topbar__actions .btn { padding: 0.55rem 0.95rem; font-size: 0.8125rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--d-red), var(--d-red-deep));
  box-shadow: 0 8px 20px rgba(227, 51, 35, 0.28);
}
.btn-ghost {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn-white {
  color: var(--d-charcoal);
  background: #fff;
}
.btn-lg { padding: 0.95rem 1.45rem; font-size: 0.9375rem; }

/* Hero - Dolmans brandmovie full-bleed */
.hero {
  position: relative;
  min-height: min(92svh, 52rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--d-charcoal);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(50, 50, 50, 0.35) 0%, rgba(50, 50, 50, 0.2) 40%, rgba(26, 26, 26, 0.9) 100%),
    linear-gradient(90deg, rgba(117, 26, 18, 0.4) 0%, transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vw, 7rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  width: min(100% - 2 * var(--pad), var(--max));
  max-width: var(--max);
  margin-inline: auto;
}
.hero__profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.hero__profile img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}
.hero__who {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.2rem;
}
.hero__who strong { font-weight: 800; color: #fff; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.hero__eyebrow i { color: var(--d-red); }
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #fff;
  width: 100%;
  max-width: none;
  text-wrap: pretty;
}
.hero__name em {
  font-style: normal;
  font-weight: 400;
  color: #fff;
}
.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: none;
  width: 100%;
  margin-bottom: 1.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Profile card */
.profile-card {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--d-surface);
  border: 1px solid var(--d-line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}
@media (min-width: 900px) {
  .profile-card {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
  }
}
.profile-card__identity {
  display: grid;
  gap: 1.15rem;
  justify-items: start;
}
@media (min-width: 520px) {
  .profile-card__identity {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1.35rem;
  }
}
.profile-card__photo {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid #fff;
  box-shadow: 0 10px 28px rgba(117, 26, 18, 0.18);
}
.profile-card__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--d-red);
  margin-bottom: 0.35rem;
}
.profile-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #fff;
}
.profile-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--d-muted);
}
.profile-card__meta i {
  color: var(--d-red);
  margin-right: 0.35rem;
}
.profile-card__meta a {
  color: #fff;
  font-weight: 700;
}
.profile-card__meta a:hover { color: var(--d-red); }
.profile-card__bio {
  font-size: 0.95rem;
  color: var(--d-muted);
  max-width: 28rem;
}
.profile-card__experience h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--d-red);
  margin-bottom: 1rem;
}
.profile-card__experience h3 + .exp-list + h3 {
  margin-top: 1.5rem;
}
.profile-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.exp-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  border-left: 2px solid rgba(227, 51, 35, 0.25);
  padding-left: 1.1rem;
}
.exp-list li {
  position: relative;
}
.exp-list li::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--d-red);
  box-shadow: 0 0 0 3px rgba(227, 51, 35, 0.15);
}
.exp-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.15rem;
}
.exp-list span {
  display: block;
  font-size: 0.8125rem;
  color: var(--d-muted);
  margin-bottom: 0.25rem;
}
.exp-list p {
  font-size: 0.875rem;
  color: var(--d-muted);
}

/* Intro */
.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; color: #fff; }
.section--dark { background: var(--d-charcoal); }
.section--alt { background: var(--d-charcoal-alt); }
.section--white { background: var(--d-charcoal-alt); }
.section__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--d-red);
}
.section--dark .section__label { color: var(--d-red); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  width: 100%;
  max-width: none;
  margin-bottom: 1rem;
  color: #fff;
  text-wrap: balance;
}
.section__title em { font-style: normal; font-weight: 400; color: #fff; }
.section__text {
  max-width: 40rem;
  color: var(--d-muted);
  font-size: 1.0625rem;
}
.section--dark .section__text { color: var(--d-muted); }
#werk .section__title {
  text-wrap: wrap;
}
#werk .section__text {
  max-width: none;
  width: 100%;
}

.pitch {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}
.pitch__intro {
  max-width: none;
}
.pitch__intro .section__text {
  max-width: 40rem;
  margin-bottom: 0;
}
#waarom .section__title {
  text-wrap: nowrap;
  white-space: nowrap;
  max-width: none;
}
@media (max-width: 640px) {
  #waarom .section__title {
    text-wrap: wrap;
    white-space: normal;
  }
}
.pitch__points {
  display: grid;
  gap: 1.5rem 2rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--d-line);
}
@media (min-width: 800px) {
  .pitch__points {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1100px) {
  .pitch__points {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pitch__point {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 0 0;
}
.pitch__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--d-red);
  letter-spacing: -0.02em;
}
.pitch__point strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.pitch__point span:not(.pitch__num) {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

/* Match */
.match-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .match-grid { grid-template-columns: repeat(2, 1fr); }
}
.match-item {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--d-line);
  border-radius: var(--radius);
  background: var(--d-surface);
}
.match-item h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #fff;
}
.match-item p {
  font-size: 0.9375rem;
  color: var(--d-muted);
}

/* Cases */
.cases {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.25rem;
}
.case {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 860px) {
  .case {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
  .case--flip .case__copy { order: 2; }
  .case--flip .case__media { order: 1; }
}
.case__kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--d-red);
  margin-bottom: 0.5rem;
}
.case__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: #fff;
  width: 100%;
  text-wrap: balance;
}
.case__text {
  color: var(--d-muted);
  margin-bottom: 1rem;
}
.case__stats {
  margin-top: 1.25rem;
  padding: 1.35rem 1.15rem 1.5rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(227, 51, 35, 0.22) 0%, transparent 65%),
    #5a1410;
  text-align: center;
}
.case__stats-title {
  margin: 0 0 1.15rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.case__stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}
.stat {
  min-width: 5.5rem;
  padding: 0;
  background: transparent;
  color: #fff;
}
.stat strong {
  display: block;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--d-red);
}
.stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}
.case__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  aspect-ratio: 9 / 14;
  max-height: 32rem;
  margin-inline: auto;
  width: min(100%, 22rem);
}
.case__media--wide {
  aspect-ratio: 16 / 11;
  width: 100%;
  max-height: none;
}
.case__media video,
.case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Approach + CTA (one red block) */
.steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 clamp(2.5rem, 6vw, 3.5rem);
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: #fff;
}
.step p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  color: #fff;
  background: linear-gradient(135deg, var(--d-red) 0%, var(--d-red-deep) 100%);
}
.cta__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  width: 100%;
  margin-bottom: 1rem;
  color: #fff;
  text-wrap: balance;
}
.cta__intro {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.plan90 {
  margin-top: clamp(0.5rem, 2vw, 1rem);
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.plan90 .cta__label {
  margin-bottom: 0.5rem;
}
.plan90__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 1.15rem;
  color: #fff;
}
.plan90__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .plan90__list { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.plan90__list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.plan90__list strong {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.plan90__list span {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

/* Dolmans-style contact block */
.contact {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--d-charcoal-alt);
}
.contact-block {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(30, 30, 30, 0.25), rgba(20, 20, 20, 0.4)),
    url("../assets/patroon.png") center / cover no-repeat;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
.contact-block__avatar {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  margin: -5.5rem auto 1.25rem;
}
.contact-block__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid #fff;
  position: relative;
  z-index: 1;
}
.contact-block__shard {
  position: absolute;
  z-index: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
.contact-block__shard--tl {
  top: -0.35rem;
  left: -0.55rem;
  border-width: 0 1.1rem 1.6rem 0;
  border-color: transparent #fff transparent transparent;
  filter: drop-shadow(0.35rem -0.15rem 0 #fff);
}
.contact-block__shard--br {
  right: -0.45rem;
  bottom: 0.15rem;
  border-width: 1.5rem 0 0 1.05rem;
  border-color: transparent transparent transparent var(--d-red);
  filter:
    drop-shadow(-0.4rem 0.35rem 0 var(--d-red))
    drop-shadow(0.25rem 0.55rem 0 var(--d-red));
}
.contact-block__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}
.contact-block__text {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.contact-block__actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
}
.contact-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--d-red);
  color: #fff;
  font-size: 1.25rem;
  transition: transform 0.15s, filter 0.15s;
}
.contact-block__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.footer {
  padding: 1.5rem 0 2rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  background: var(--d-charcoal);
}
.footer a { text-decoration: underline; text-underline-offset: 2px; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
