/* Sollicitatie Content Creator Video - WWF-NL */
@font-face {
  font-family: "WWF";
  src: url("../assets/wwf.woff") format("woff");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --w-green: #5d8b34;
  --w-green-deep: #4a7029;
  --w-bg: #ffffff;
  --w-bg-alt: #f6f5f2;
  --w-ink: #111111;
  --w-muted: rgba(17, 17, 17, 0.68);
  --w-line: rgba(17, 17, 17, 0.12);
  --w-surface: #ffffff;
  --font-display: "WWF", "Rubik", system-ui, sans-serif;
  --font-body: "Rubik", system-ui, sans-serif;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --max: 1088px;
  --radius: 1rem;
  /* aliases used across existing class names */
  --d-red: var(--w-green);
  --d-red-deep: var(--w-green-deep);
  --d-red-mid: var(--w-green);
  --d-charcoal: var(--w-bg);
  --d-charcoal-alt: var(--w-bg-alt);
  --d-ink: var(--w-ink);
  --d-muted: var(--w-muted);
  --d-line: var(--w-line);
  --d-paper: var(--w-bg);
  --d-white: #ffffff;
  --d-surface: var(--w-surface);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--w-ink);
  background: var(--w-bg);
  -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: var(--w-ink); }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--w-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: var(--w-ink);
  flex-shrink: 0;
}
.topbar__brand span { color: var(--w-green); }
.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(17, 17, 17, 0.72);
  transition: color 0.15s;
}
.topbar__nav a:hover { color: var(--w-ink); }
.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: var(--w-green);
  box-shadow: 0 8px 20px rgba(93, 139, 52, 0.28);
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-ghost {
  color: var(--w-ink);
  background: transparent;
  border: 1.5px solid rgba(17, 17, 17, 0.22);
}
.btn-ghost:hover { border-color: var(--w-ink); background: rgba(17, 17, 17, 0.04); }
.btn-white {
  color: var(--w-ink);
  background: #fff;
  border: 1.5px solid rgba(17, 17, 17, 0.12);
}
.btn-lg { padding: 0.95rem 1.45rem; font-size: 0.9375rem; }

.hero {
  position: relative;
  min-height: min(92svh, 52rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0a1a22;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.72) 0%, rgba(8, 18, 24, 0.35) 45%, rgba(8, 18, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 18, 24, 0.25) 0%, rgba(8, 18, 24, 0.55) 55%, rgba(8, 18, 24, 0.82) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vw, 7rem) 0 clamp(4.5rem, 10vw, 6.5rem);
  max-width: var(--max);
}
.hero__divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  color: var(--w-bg-alt);
  line-height: 0;
  pointer-events: none;
}
.hero__divider svg {
  display: block;
  width: 100%;
  height: clamp(3.75rem, 9vw, 7rem);
}
.hero__profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.hero__profile img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.hero__who { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.85); }
.hero__who strong { font-weight: 800; color: #fff; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.hero__eyebrow i { color: #c8e6a0; }
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: none;
  text-wrap: balance;
  color: #fff;
}
.hero__name em {
  font-style: normal;
  font-weight: 400;
  color: #c8e6a0;
}
.hero__lead {
  max-width: 38rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero .btn-white {
  color: var(--w-ink);
  background: #fff;
  border: none;
}

.profile-card {
  display: grid;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius);
  background: var(--w-bg);
  border: 1px solid var(--w-line);
}
@media (min-width: 800px) {
  .profile-card {
    grid-template-columns: 1fr 1.15fr;
    gap: 2.5rem;
  }
}
.profile-card__identity {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 520px) {
  .profile-card__identity {
    flex-direction: row;
    gap: 1.25rem;
  }
}
.profile-card__photo {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
}
.profile-card__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w-green);
  margin-bottom: 0.35rem;
}
.profile-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--w-ink);
}
.profile-card__meta {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9375rem;
  color: var(--w-muted);
}
.profile-card__meta i {
  width: 1.1rem;
  color: var(--w-green);
  margin-right: 0.35rem;
}
.profile-card__meta a { color: var(--w-ink); }
.profile-card__meta a:hover { color: var(--w-green); }
.profile-card__bio {
  font-size: 0.975rem;
  color: var(--w-muted);
  max-width: 28rem;
}
.profile-card__experience h3 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w-green);
  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;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: exp;
}
.exp-list li {
  position: relative;
  padding-left: 1.15rem;
  border-left: 2px solid rgba(93, 139, 52, 0.35);
}
.exp-list li::before {
  counter-increment: exp;
  content: "";
  position: absolute;
  left: -0.35rem;
  top: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--w-green);
  box-shadow: 0 0 0 3px rgba(93, 139, 52, 0.15);
}
.exp-list strong {
  display: block;
  font-size: 0.975rem;
  color: var(--w-ink);
}
.exp-list span {
  display: block;
  font-size: 0.8125rem;
  color: var(--w-muted);
  margin: 0.15rem 0 0.35rem;
}
.exp-list p {
  font-size: 0.875rem;
  color: var(--w-muted);
}

.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; color: var(--w-ink); }
.section--dark { background: var(--w-bg); }
.section--white { background: var(--w-bg-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(--w-green);
}
.section--dark .section__label { color: var(--w-green); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  width: 100%;
  max-width: none;
  margin-bottom: 1rem;
  color: var(--w-ink);
  text-wrap: balance;
}
.section__title em { font-style: normal; font-weight: 400; color: var(--w-green); }
.section__text {
  max-width: 40rem;
  color: var(--w-muted);
  font-size: 1.0625rem;
}
.section--dark .section__text { color: var(--w-muted); }
#werk .section__title { text-wrap: wrap; }
#werk .section__text { max-width: 40rem; }

.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(--w-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: 700;
  line-height: 1;
  color: var(--w-green);
  letter-spacing: -0.02em;
}
.pitch__point > strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--w-ink);
}
.pitch__point span:not(.pitch__num) {
  font-size: 0.95rem;
  color: var(--w-muted);
  line-height: 1.5;
}
.pitch__point span strong {
  display: inline;
  font-size: inherit;
  font-weight: 700;
  color: var(--w-ink);
}

.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(--w-line);
  border-radius: var(--radius);
  background: var(--w-bg);
}
.match-item h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--w-ink);
}
.match-item p {
  font-size: 0.9375rem;
  color: var(--w-muted);
}

/* Case reels: 4 videos side by side, carousel when more */
.case-reel {
  --reel-gap: 0.85rem;
  --reel-visible: 4;
  position: relative;
  margin-top: 2rem;
}
.case-reel__viewport {
  overflow: hidden;
  padding-block: 0.5rem;
  margin-block: -0.5rem;
}
.case-reel__track {
  display: flex;
  gap: var(--reel-gap);
  transition: transform 0.4s ease;
  will-change: transform;
}
.case-reel__item {
  flex: 0 0 calc((100% - (var(--reel-visible) - 1) * var(--reel-gap)) / var(--reel-visible));
  min-width: 0;
  aspect-ratio: 9 / 14;
  padding: 0;
  border: none;
  background: #111;
  overflow: hidden;
  border-radius: 0.65rem;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transform-origin: center center;
}
.case-reel__item:hover,
.case-reel__item:focus-visible {
  transform: scale(1.06);
  z-index: 2;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  outline: none;
}
.case-reel__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.case-reel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--w-ink);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: opacity 0.15s, transform 0.15s;
}
.case-reel__nav[hidden] {
  display: none !important;
}
.case-reel__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.case-reel__nav:not(:disabled):hover { transform: translateY(-50%) scale(1.04); }
.case-reel__nav--prev { left: -0.35rem; }
.case-reel__nav--next { right: -0.35rem; }
.case-reel__nav i { font-size: 0.75rem; }
@media (max-width: 899px) {
  .case-reel__nav--prev { left: 0.35rem; }
  .case-reel__nav--next { right: 0.35rem; }
}

.video-lightbox {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(92vw, 28rem);
  max-width: 92vw;
  max-height: 92vh;
  padding: 0;
  border: none;
  border-radius: 1rem;
  background: #000;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.video-lightbox::backdrop {
  background: rgba(8, 18, 24, 0.78);
  backdrop-filter: blur(6px);
}
.video-lightbox__frame {
  aspect-ratio: 9 / 16;
  max-height: 88vh;
  background: #000;
}
.video-lightbox__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-lightbox__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--w-ink);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.video-lightbox__close:hover { background: #fff; }
body.is-lightbox-open { overflow: hidden; }

.case-meta {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--w-line);
}
.case-meta__title {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w-muted);
}
.case-meta__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.stat {
  min-width: 0;
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--w-green);
}
.stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--w-muted);
}

#motoveda .section__title { text-wrap: wrap; }
#motoveda .section__text { max-width: 40rem; }

.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(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.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: 700;
  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.88);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  color: #fff;
  background: var(--w-green);
}
.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: 700;
  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.9);
  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.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.plan90 .cta__label { margin-bottom: 0.5rem; }
.plan90__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  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.88);
}

.contact {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--w-bg-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(255, 255, 255, 0.92), rgba(246, 245, 242, 0.96)),
    #fff;
  border: 1px solid var(--w-line);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}
.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;
}
.contact-block__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--w-ink);
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}
.contact-block__text {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  font-size: 1.05rem;
  color: var(--w-muted);
  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(--w-green);
  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: var(--w-muted);
  text-align: center;
  background: var(--w-bg);
}
.footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--w-ink);
}

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