/* ===========================
   Digital Duke — Stylesheet
   Font: Titillium Web
   Design width: 1280px
   =========================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors */
  --color-black:         #111;
  --color-dark:          #1e1e1e;
  --color-dark-gray:     #3a3a3a;
  --color-medium-gray:   #666;
  --color-light-gray:    #f3f3f3;
  --color-lighter-gray:  #f2f2f2;
  --color-placeholder:   #d9d9d9;
  --color-white:         #fff;

  --color-accent:        #ff0099;
  --color-accent-hover:  #e0007f;
  --color-cyan:          #00c0e8;

  --color-gradient-1:    #080f1c;
  --color-gradient-2:    #0d1f3d;
  --color-gradient-3:    #215d99;
  --color-gradient-4:    #1546ae;

  /* Overlays */
  --overlay-dark:        rgba(0, 0, 0, 0.3);
  --overlay-darker:      rgba(0, 0, 0, 0.7);
  --overlay-darkest:     rgba(0, 0, 0, 0.8);
  --overlay-light:       rgba(255, 255, 255, 0.1);
  --overlay-light-md:    rgba(255, 255, 255, 0.15);
  --overlay-text-muted:  rgba(255, 255, 255, 0.5);
  --overlay-text-soft:   rgba(255, 255, 255, 0.65);
  --overlay-text-light:  rgba(255, 255, 255, 0.8);
  --overlay-text-dim:    rgba(255, 255, 255, 0.75);

  /* Layout */
  --container-wide:      1280px;
  --container-default:   1280px;
  --container-padding:   clamp(16px, 3vw, 40px);
  --section-padding-x:   clamp(20px, 6vw, 80px);

  /* Typography */
  --font-family:         'Titillium Web', sans-serif;
  --font-family-display: 'Ramabhadra', sans-serif;

  --fs-h1:               clamp(32px, 5.2vw, 67px);
  --fs-h2:               clamp(28px, 5.2vw, 67px);
  --fs-h3:               clamp(20px, 2.5vw, 32px);
  --fs-h4:               clamp(18px, 2.5vw, 32px);
  --fs-h5:               clamp(16px, 1.8vw, 24px);
  --fs-h6:               clamp(14px, 1.4vw, 18px);

  --fs-display-xl:       16vw;
  --fs-display-lg:       clamp(48px, 11vw, 141px);
  --fs-display-md:       clamp(48px, 8.3vw, 107px);
  --fs-display-sm:       clamp(40px, 15.6vw, 200px);
  --fs-display-marquee:  clamp(36px, 7.2vw, 92px);
  --fs-display-quote:    clamp(28px, 6.4vw, 82px);

  /* Spacing */
  --space-section:       clamp(60px, 9.3vw, 120px);
  --space-lg:            clamp(40px, 6vw, 80px);
  --space-md:            clamp(30px, 4.5vw, 60px);
  --space-sm:            clamp(20px, 3.1vw, 40px);
  --space-xs:            clamp(16px, 1.8vw, 24px);
  --space-card-inner:    clamp(24px, 4.5vw, 60px);

  /* Border Radius */
  --radius-card:         clamp(24px, 4.5vw, 60px);
  --radius-section:      clamp(40px, 7.8vw, 100px);
  --radius-pill:         40px;
  --radius-sm:           16px;
  --radius-xs:           12px;

  /* Shadows */
  --shadow-card:         0 8px 30px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast:     0.3s ease;
  --transition-medium:   0.4s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 100px; }
body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-dark);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- HEADING HIERARCHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 { font-size: var(--fs-h1); letter-spacing: clamp(1.5px, 0.26vw, 3.35px); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: var(--fs-h4); font-weight: 400; }
h5 { font-size: var(--fs-h5); font-weight: 400; }
h6 { font-size: var(--fs-h6); font-weight: 400; letter-spacing: 0.9px; }

/* ---------- CONTAINERS ---------- */
.container,
.scroll-quote__inner,
.klanten__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
}
.nav__inner,
.hero__inner,
.projecten__inner,
.missie__inner,
.cijfers__inner,
.faq__inner,
.footer__inner {
  max-width: var(--container-default);
  margin: 0 auto;
}
.container { padding: 0 var(--container-padding); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-family);
  font-size: var(--fs-h5);
  font-weight: 400;
  letter-spacing: 1.2px;
  padding: clamp(10px, 1.1vw, 14px) clamp(20px, 2.5vw, 32px);
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline:hover {
  background: var(--overlay-light);
}
.btn--outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(16px, 2vw, 24px) var(--container-padding);
  transition: background var(--transition-medium), backdrop-filter var(--transition-medium), -webkit-backdrop-filter var(--transition-medium);
}
.nav--scrolled {
  background: var(--overlay-dark);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--color-white);
}
.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
}
.nav__cta {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: 0.9px;
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.nav__cta:hover { opacity: 1; }

/* Dot-grid menu button (2x2) */
.nav__dots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
  margin-top: 4px;
}
.nav__dots span {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--color-white);
  border-radius: 50%;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}
.nav__dots:hover span {
  opacity: 1;
}
.nav__dots.is-active span {
  opacity: 1;
}

/* Mobile nav overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.nav__mobile-overlay.is-open {
  display: flex;
  opacity: 1;
}
.nav__mobile-overlay a {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.nav__mobile-overlay a:hover { opacity: 1; }

@media (max-width: 768px) {
  .nav__cta {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero--content {
  position: sticky;
  top: 0;
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(../img/gradient-bg.jpg);
  background-size: cover;
  background-position: center;
}
.hero__bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(35px, 3vw, 0px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0px;
  margin-bottom: var(--space-md);
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero__heading {
  color: var(--color-white);
  max-width: 800px;
  line-height: 1.05;
}
.hero__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--overlay-light);
  backdrop-filter: blur(20px);
  border: 1px solid var(--overlay-light-md);
  border-radius: var(--radius-sm);
  padding: var(--space-xs) clamp(20px, 2.5vw, 32px);
  text-align: left;
  width: clamp(180px, 19vw, 250px);
}
.hero__stats-number {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--color-white);
  width: 100%;
}
.hero__stats-number sup {
  font-size: clamp(18px, 1.8vw, 24px);
}
.hero__stats-label {
  font-size: var(--fs-h6);
  font-weight: 400;
  letter-spacing: 0.9px;
  color: var(--color-white);
  opacity: 0.8;
  line-height: 1.2;
  margin-top: 4px;
  width: 100%;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: clamp(24px, 3.7vw, 48px);
  flex-wrap: wrap;
}
.hero__title-wrap {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
  padding: 0 20px;
}
.hero__title {
  display: block;
  font-size: var(--fs-display-xl);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-white);
  line-height: 0.85;
  white-space: nowrap;
  clip-path: inset(100% 0 0 0);
}

@media (max-width: 768px) {
  .hero__top {
    flex-direction: column;
    gap: 24px;
  }
  .hero__stats {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero__stats-number { width: auto; }
  .hero__stats-label { width: auto; text-align: right; margin-top: 0; }
}
.hero__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.hero__desc {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--color-white);
  max-width: 700px;
  line-height: 1.4;
}
.hero--content .hero__content {
  justify-content: flex-end;
  padding-bottom: 120px;
}
.hero__sparkle {
  display: inline-block;
  vertical-align: middle;
  will-change: transform;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero__header {
    flex-direction: column;
    gap: 24px;
  }
}

/* ---------- ABOUT PHOTO ---------- */
.about-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  clip-path: inset(80% 25% 0% 25% round 100px 100px 0 0);
}
.about-photo__bg {
  position: absolute;
  inset: -10%;
  background-image: url('../img/junzaizai._a_professional_photoshoot_of_an_athletic_male_model__76bd021c-d367-4fee-838d-77010590a38f 1.png');
  background-size: cover;
  background-position: center top;
  will-change: transform;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
  pointer-events: none;
}

/* ---------- DUKES MARQUEE ---------- */
.dukes-marquee {
  position: relative;
  z-index: 3;
  padding: clamp(48px, 6vw, 80px) 0;
  overflow: hidden;
  background: var(--color-white);
}
.dukes-marquee__row {
  overflow: hidden;
}
.dukes-marquee__row + .dukes-marquee__row {
  margin-top: clamp(8px, 1.5vw, 16px);
}
.dukes-marquee__band {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}
.dukes-marquee__text {
  font-size: clamp(80px, 12.3vw, 197px);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 0.85;
}
.dukes-marquee__sparkle {
  flex-shrink: 0;
  width: 61px;
  height: 61px;
  margin: 0 clamp(24px, 3vw, 48px);
  will-change: transform;
}

/* ---------- SCROLL QUOTE ---------- */
.scroll-quote {
  background: var(--color-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-card-inner);
}
.scroll-quote__inner {
  flex: 1;
  display: flex;
  align-items: center;
}
.scroll-quote__text {
  font-size: var(--fs-display-quote);
  line-height: 1.15;
  color: var(--color-dark);
  text-align: center;
  text-transform: uppercase;
}
.scroll-quote__text strong {
  font-weight: 700;
}
.reveal-word {
  display: inline-block;
  opacity: 0.05;
}
.scroll-quote__icon {
  display: block;
  margin: 24px auto;
  will-change: transform;
}
.scroll-quote__text > span {
  font-weight: 400;
  display: block;
  margin-top: 16px;
}

/* ---------- KLANTEN ---------- */
.klanten__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding-top: var(--space-section);
}
.klanten__text {
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.3;
}
.klanten__logos-wrap {
  width: calc(3 * 220px + 2 * 16px);
  flex-shrink: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
@media (max-width: 768px) {
  .klanten__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .klanten__logos-wrap {
    width: 50%;
  }
}
.klanten__logos-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: logos-scroll 12s linear infinite;
}
.klanten__logo-placeholder {
  width: 220px;
  height: 110px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.klanten__logo-placeholder img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}
@keyframes logos-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--color-white);
}
.service-card {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  cursor: pointer;
}
.service-card:nth-child(1) { z-index: 1; clip-path: inset(80% 25% 0% 25% round 100px 100px 0 0); }
.service-card:nth-child(2) { z-index: 2; }
.service-card:nth-child(3) { z-index: 3; }
.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.service-card__bg--1 {
  background-image: url('../img/junzaizai._a_professional_photoshoot_of_an_athletic_male_model__76bd021c-d367-4fee-838d-77010590a38f 1.png');
  background-size: cover;
  background-position: center top;
}
.service-card__bg--2 {
  background-image: url('../img/viktoriyazelianko_extreme_close-up_product_photograph_-_Oakley__53c4e0e3-abbd-490b-9824-0f567422b863 1.png');
  background-size: cover;
  background-position: center;
}
.service-card__bg--3 {
  background-image: url('../img/junzaizai._a_professional_photoshoot_of_an_athletic_male_model__76bd021c-d367-4fee-838d-77010590a38f 1.png');
  background-size: cover;
  background-position: center top;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 1;
  transition: background var(--transition-medium);
}
.service-card:hover::after {
  background: rgba(0, 0, 0, 0.18);
}
/* Meta: hoek labels */
.service-card__meta {
  position: absolute;
  top: clamp(20px, 2.8vw, 36px);
  left: clamp(20px, 3.7vw, 48px);
  right: clamp(20px, 3.7vw, 48px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card__meta-left,
.service-card__meta-right {
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--overlay-text-muted);
  text-transform: uppercase;
}
/* Gecentreerde content */
.service-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
  padding: clamp(60px, 14vw, 180px) var(--space-card-inner);
  gap: clamp(12px, 1.5vw, 20px);
}
.service-card__tag {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--overlay-text-soft);
  text-transform: uppercase;
}
.service-card__title {
  color: var(--color-white);
  line-height: 1.05;
}
.service-card__desc {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--overlay-text-light);
  max-width: 640px;
  line-height: 1.4;
}
.service_plus {
  display: block;
  font-size: clamp(48px, 7.8vw, 100px);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
}


/* ---------- MARQUEE SPACER ---------- */
.marquee-spacer {
  height: 150vh;
  background: var(--color-gradient-1);
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--color-lighter-gray);
  overflow: hidden;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  clip-path: inset(80% 25% 0% 25% round 100px 100px 0 0);
  border-radius: 100px 100px 0 0;
  will-change: clip-path;
}
.marquee__row {
  overflow: hidden;
}
.marquee__band {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee__strip {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.7vw, 48px);
  padding-right: clamp(24px, 3.7vw, 48px);
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  flex-shrink: 0;
}
.marquee__thumb {
  width: clamp(120px, 16vw, 210px);
  height: clamp(75px, 10vw, 130px);
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex-shrink: 0;
}
.marquee__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.marquee__label {
    font-size: var(--fs-display-marquee);
    color: var(--color-dark);
    white-space: nowrap;
    letter-spacing: -0.5px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

/* ---------- PROJECTEN ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.projecten {
  background: linear-gradient(180deg, var(--color-gradient-1) 0%, var(--color-gradient-2) 30%, var(--color-gradient-3) 70%, var(--color-gradient-4) 100%);
  padding: var(--space-md) var(--section-padding-x) clamp(15px, 2.3vw, 30px);
  margin-top: -1px;
}
.projecten__inner {
  /* max-width & margin via container group */
}
.projecten__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.projecten__heading {
  color: var(--color-white);
}
.projecten__desc {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--color-white);
  max-width: 700px;
  line-height: 1.4;
  margin-bottom: var(--space-md);
}
.projecten__grid {
  columns: 3;
  column-gap: clamp(20px, 3.9vw, 50px);
  padding-top: var(--space-md);
}
.projecten__card {
  break-inside: avoid;
  display: block;
  margin-bottom: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  animation: float 4s ease-in-out infinite;
  box-shadow: var(--shadow-card);
}
.projecten__card:nth-child(2) { animation-delay: 0.4s; }
.projecten__card:nth-child(3) { animation-delay: 0.8s; }
.projecten__card:nth-child(4) { animation-delay: 1.2s; }
.projecten__card:nth-child(5) { animation-delay: 1.6s; }
.projecten__card:nth-child(6) { animation-delay: 2.0s; }
.projecten__card-image {
  width: 100%;
  background: var(--color-gradient-2);
  overflow: hidden;
  border-radius: 35px;
}
/* Variërende hoogtes voor masonry effect */
.projecten__card:nth-child(1) .projecten__card-image { margin-top: 90px; }
.projecten__card:nth-child(5) .projecten__card-image { margin-top: 120px; }

.projecten__card-image img {
  width: 100%;
  height: clamp(300px, 45vw, 600px);
  object-fit: cover;
  display: block;
  filter: blur(0px);
  transition: filter 0.6s ease;
}
.projecten__card:hover .projecten__card-image img {
  filter: blur(6px);
}
.projecten__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 2.2vw, 28px) clamp(20px, 2.5vw, 32px);
  background: linear-gradient(to top, var(--overlay-darkest) 0%, var(--overlay-dark) 60%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-medium) 0.5s;
}
.projecten__card:hover .projecten__card-info {
  opacity: 1;
  transition: opacity var(--transition-medium) 0.5s;
}
.projecten__card-info h3 {
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.2;
}
.projecten__tags {
  display: flex;
  gap: clamp(8px, 0.9vw, 12px);
  margin-top: clamp(8px, 0.9vw, 12px);
  flex-wrap: wrap;
}
.projecten__tags span {
  font-size: var(--fs-h6);
  font-weight: 400;
  color: var(--color-dark);
  background: var(--color-lighter-gray);
  padding: clamp(4px, 0.5vw, 6px) clamp(10px, 1.25vw, 16px);
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .projecten__grid { columns: 2; }
  .projecten__header { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .projecten__grid { columns: 1; }
  .projecten__card:nth-child(1) .projecten__card-image,
  .projecten__card:nth-child(5) .projecten__card-image { margin-top: 0; }
}

/* ---------- MISSIE ---------- */
.missie-bg {
  position: relative;
  z-index: 3;
}
.missie {
  background: var(--color-light-gray);
  padding: clamp(80px, 12.5vw, 160px) var(--section-padding-x) var(--space-lg);
  border-radius: var(--radius-section) var(--radius-section) 0px 0px;
  margin-top: -100px;
  margin-bottom: -1px;
  clip-path: inset(80% 25% 0% 25% round 100px 100px 0 0);
  will-change: clip-path;
}
.missie__inner {
  opacity: 0;
}
.missie__heading {
  color: var(--color-dark);
  margin-bottom: 8px;
}
.missie__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: clamp(40px, 7vw, 90px);
}
.missie__label {
  font-size: var(--fs-h6);
  font-weight: 400;
  letter-spacing: 0.9px;
  color: var(--color-dark);
  display: block;
  margin-bottom: var(--space-md);
}
.missie__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 348fr 438fr;
  gap: var(--space-sm) clamp(24px, 3.7vw, 48px);
  margin-bottom: var(--space-lg);
  perspective: 1000px;
}
.missie__quote-block,
.missie__stats-card,
.missie__cta-card {
  transform-style: preserve-3d;
  transition: transform var(--transition-medium);
  will-change: transform;
  box-shadow: var(--shadow-card);
}
.missie__quote-block {
  grid-row: 1 / 3;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: clamp(32px, 5.5vw, 70px) var(--space-card-inner) var(--space-card-inner);
  display: flex;
  flex-direction: column;
}
.missie__quote-mark {
  font-family: var(--font-family-display);
  font-size: clamp(100px, 20vw, 257px);
  line-height: 0.6;
  color: var(--color-dark);
  display: block;
  margin-bottom: -40px;
  margin-left: -19px;
}
.missie__quote-text {
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.45;
  max-width: 500px;
  margin-bottom: clamp(30px, 6vw, 80px);
}
.missie__quote-text strong {
  font-weight: 700;
}
.missie__attribution {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px;
  margin-top: 150px;
}
.missie__sparkle {
  display: inline-block;
  vertical-align: middle;
  will-change: transform;
}
.missie__attribution-name {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-dark);
}
.missie__attribution-role {
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-dark);
  width: 100%;
}
.missie__stats-card {
  background: var(--color-dark);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3.5vw, 45px) var(--space-card-inner);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.missie__stat-number {
  font-size: var(--fs-display-md);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: clamp(8px, 1.25vw, 16px);
}
.missie__stat-text {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.45;
}
.missie__cta-card {
  background: url('../img/missie-cta-bg-213637.png') center / cover no-repeat;
  border-radius: var(--radius-card);
  padding: var(--space-card-inner);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.missie__cta-text {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.45;
}
.missie__dukes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.1vw, 40px);
  overflow: hidden;
  background: var(--color-light-gray);
  padding: var(--space-section) 0 0;
  line-height: 0.85;
}
@media (max-width: 768px) {
  .missie__header { flex-direction: column; gap: 8px; }
  .missie__content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .missie__quote-block {
    grid-row: auto;
  }
  .missie__attribution { margin-top: 40px; }
}
.missie__dukes-text {
  font-size: var(--fs-display-xl);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.missie__dukes-sparkle {
  flex-shrink: 0;
  will-change: transform;
}
.missie__cta-card a.btn.btn--primary {
    width: max-content;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--space-section) 0 var(--space-md);
  background: var(--color-light-gray);
}
.testimonials__header {
  max-width: var(--container-default);
  margin: 0 auto clamp(32px, 7.8vw, 100px);
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials__heading {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
}
.testimonials__nav {
  display: flex;
  gap: 12px;
}
.testimonials__btn {
  width: clamp(40px, 4.3vw, 56px);
  height: clamp(40px, 4.3vw, 56px);
  border-radius: 50%;
  border: 2px solid var(--color-dark);
  background: transparent;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.testimonials__btn:hover:not(:disabled) {
  background: var(--color-dark);
  color: var(--color-white);
}
.testimonials__btn:disabled {
  opacity: 0.25;
  cursor: default;
}
.testimonials__viewport {
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  gap: clamp(16px, 3.7vw, 48px);
  padding-left: max(var(--container-padding), calc(50% - var(--container-default) / 2 + var(--container-padding)));
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: grab;
  user-select: none;
}
.testimonials__track.is-dragging {
  transition: none;
  cursor: grabbing;
}
.testimonials__hero-card {
  width: clamp(280px, 45vw, 576px);
  height: clamp(360px, 42vw, 539px);
  border-radius: var(--radius-card);
  background: url('../img/missie-cta-bg-213637.png') center / cover no-repeat;
  padding: clamp(32px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.testimonials__stars {
  display: flex;
  gap: 1px;
}
.testimonials__stars img {
  will-change: transform;
}
.testimonials__hero-text {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.45;
  max-width: 355px;
}
.testimonials__quote-card {
  width: clamp(280px, 45vw, 576px);
  height: clamp(360px, 42vw, 539px);
  border-radius: var(--radius-card);
  background: var(--color-white);
  padding: clamp(28px, 3.9vw, 50px) clamp(28px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.testimonials__quote-mark {
  font-family: var(--font-family-display);
  font-size: clamp(56px, 9.3vw, 120px);
  color: var(--color-cyan);
  line-height: 0.7;
  display: block;
  margin-bottom: clamp(16px, 3.1vw, 40px);
}
.testimonials__quote-text {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.45;
  margin-bottom: auto;
}
.testimonials__attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: clamp(20px, 3.1vw, 40px);
}
.testimonials__attribution-name {
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-dark);
}
.testimonials__attribution-role {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: var(--color-dark);
}
.testimonials__dots {
  display: none;
}

/* ---------- RESPONSIVE: TESTIMONIALS ---------- */
/* Testimonials sizes now scale via clamp() - see base styles above */

/* ---------- TEAM ---------- */
.team {
  background: var(--color-white);
  padding: var(--space-section) var(--section-padding-x) clamp(15px, 2.3vw, 30px);
  overflow: hidden;
}
.team__inner {
  margin: 0 auto;
  position: relative;
}
/* --- 3D Carousel --- */
.team__carousel {
  position: relative;
  width: 100%;
  height: 720px;
  cursor: grab;
}
.team__carousel:active {
  cursor: grabbing;
}
.team__carousel-scene {
  width: 100%;
  height: 100%;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}
@keyframes heading-glow {
  0%, 100% { text-shadow: 0 0 8px rgba(255,255,255,0.05); }
  50%      { text-shadow: 0 0 20px rgba(255,255,255,0.15), 0 0 40px rgba(255,255,255,0.05); }
}
.team__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0px);
  font-size: var(--fs-display-sm);
  font-weight: 700;
  color: var(--color-dark-gray);
  line-height: 0.85;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
  pointer-events: none;
  white-space: nowrap;
  animation: heading-glow 4s ease-in-out infinite;
}
.team__carousel-ring {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  will-change: transform;
}

/* --- Cards --- */
.team__card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  margin-left: -110px;
  margin-top: -140px;
  text-align: center;
}
/* Subtle wave animation */
@keyframes team-wave {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -8px; }
}

/* Staggered heights per card */
.team__card[data-index="0"] { margin-top: -130px; animation: team-wave 4s ease-in-out infinite; animation-delay: 0s; }
.team__card[data-index="1"] { margin-top: -160px; animation: team-wave 4s ease-in-out infinite; animation-delay: -1s; }
.team__card[data-index="2"] { margin-top: -110px; animation: team-wave 4s ease-in-out infinite; animation-delay: -2s; }
.team__card[data-index="3"] { margin-top: -145px; animation: team-wave 4s ease-in-out infinite; animation-delay: -3s; }
.team__card-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  transition: transform var(--transition-medium);
  background: var(--color-placeholder);
}
.team__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team__card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 16px;
  background: linear-gradient(to top, var(--overlay-darker) 0%, transparent 100%);
}
.team__card-name {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--color-white);
}
.team__card-role {
  font-size: clamp(12px, 1.1vw, 14px);
  color: var(--overlay-text-dim);
  margin-top: 2px;
}

/* --- Active / Inactive states (opacity set dynamically by JS) --- */
.team__card--active .team__card-photo {
  transform: scale(1.02);
}

/* ---------- TEAM DUKES — MEMBER DISPLAY ---------- */
.team-dukes-content {
  position: relative;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: var(--color-white);
}
.team-dukes-member {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(40px);
}
.team-dukes-member.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  padding: 0;
}
.team-dukes-member.is-exiting {
  opacity: 0;
  transform: translateX(-40px);
}

.team-dukes-description {
  align-self: center;
}
.team-dukes-description p {
  font-family: var(--font-family);
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.team-dukes-photo {
  width: clamp(220px, 25vw, 400px);
  aspect-ratio: 0.79;
  border-radius: clamp(24px, 3.2vw, 51px);
  overflow: hidden;
  background: var(--color-placeholder);
  flex-shrink: 0;
}
.team-dukes-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-dukes-info {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 48px);
  align-self: center;
}
.team-dukes-info-text {
  display: flex;
  flex-direction: column;
}
.team-dukes-name {
  font-family: var(--font-family);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.05;
  letter-spacing: 0.05em;
}
.team-dukes-role {
  font-family: var(--font-family);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.05;
  letter-spacing: 0.05em;
}
.team-dukes-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: clamp(40px, 4.1vw, 66px);
  height: auto;
  transition: transform 0.2s ease;
  transform: rotate(90deg);
}
.team-dukes-arrow:hover {
  transform: rotate(90deg) scale(1.1);
}
.team-dukes-arrow svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .team-dukes-member {
    gap: clamp(16px, 3vw, 40px);
  }
}
@media (max-width: 768px) {
  .team-dukes-member {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    gap: var(--space-sm);
  }
  .team-dukes-photo {
    justify-self: center;
    order: -1;
  }
  .team-dukes-description {
    order: 1;
  }
  .team-dukes-info {
    order: 2;
    align-items: center;
  }
  .team-dukes-arrow {
    transform: rotate(90deg);
  }
  .team-dukes-arrow:hover {
    transform: rotate(90deg) scale(1.1);
  }
}

/* ---------- CIJFERS ---------- */
.cijfers {
  background: var(--color-white);
  padding-bottom: clamp(80px, 20vw, 260px);
}
.cijfers__inner {
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(24px, 3.7vw, 48px);
}
.cijfers__item {
  text-align: center;
}
.cijfers__number {
  font-size: var(--fs-display-md);
  font-weight: 700;
  color: var(--color-dark);
  display: block;
  line-height: 1;
}
.cijfers__label {
  font-size: clamp(16px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--color-dark);
  margin-top: 8px;
}
@media (max-width: 600px) {
  .cijfers__inner {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- FAQ ---------- */
.faq-bg {
  background: var(--color-white);
}
.faq {
  background: var(--color-light-gray);
  border-radius: var(--radius-section) var(--radius-section) 0 0;
  padding: clamp(60px, 12vw, 155px) 0;
  margin-top: -90px;
  clip-path: inset(80% 25% 0% 25% round 100px 100px 0 0);
  will-change: clip-path;
}
.faq__inner {
  padding: 0 var(--container-padding);
  opacity: 0;
}
.faq__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(40px, 7.8vw, 100px);
}
.faq__heading {
  color: var(--color-dark);
  line-height: 1.05;
}
.faq__tag {
  font-size: var(--fs-h6);
  font-weight: 400;
  color: var(--color-dark);
  white-space: nowrap;
  margin-top: 10px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 38px);
}
.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-card);
  min-height: clamp(80px, 11vw, 143px);
  padding: 0 clamp(24px, 5.8vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq__question {
  font-size: var(--fs-h4);
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: clamp(80px, 11vw, 143px);
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::after {
  content: '+';
  font-size: clamp(40px, 7.8vw, 100px);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: clamp(16px, 3.1vw, 40px);
}
.faq__item[open] .faq__question {
  min-height: auto;
  padding-top: clamp(24px, 3.1vw, 40px);
}
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}
.faq__answer {
  font-size: var(--fs-h5);
  font-weight: 400;
  color: var(--color-medium-gray);
  line-height: 1.5;
  padding: 0 0 clamp(24px, 3.1vw, 40px);
  max-width: 800px;
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  z-index: 4;
  background: var(--color-dark);
  padding: var(--space-section) var(--section-padding-x) var(--space-md);
}
.footer__inner {
  /* max-width & margin via container group */
}
.footer__heading {
  font-size: var(--fs-display-lg);
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-lg);
}
.footer__columns {
  display: flex;
  gap: var(--space-section);
  margin-bottom: var(--space-lg);
}
.footer__col-label {
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-cyan);
  display: block;
  margin-bottom: var(--space-xs);
}
.footer__contact {
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: var(--space-xs);
}
.footer__address {
  font-size: var(--fs-h6);
  font-weight: 400;
  color: var(--color-white);
  opacity: 0.6;
  line-height: 1.4;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__nav a {
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-white);
  transition: opacity 0.3s;
}
.footer__nav a:hover { opacity: 0.7; }
.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--overlay-light);
}
.footer__logo {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--color-white);
}
@media (max-width: 768px) {
  .footer__columns {
    flex-direction: column;
    gap: 32px;
  }
}

/* ---------- RESPONSIVE: FAQ ---------- */
/* FAQ sizes now scale via clamp() - see base styles above */
@media (max-width: 768px) {
  .faq__header {
    flex-direction: column;
    gap: 16px;
  }
}

/* ---------- RESPONSIVE: TEAM CAROUSEL ---------- */
/* Team heading/text sizes scale via clamp() — only layout overrides below */
@media (max-width: 1024px) {
  .team__carousel {
    height: 600px;
  }
}
@media (max-width: 768px) {
  .team__carousel {
    height: 420px;
  }
  .team__carousel-scene {
    perspective: 800px;
  }
  .team__card {
    width: 200px;
    margin-left: -100px;
  }
  .team__card[data-index="0"] { margin-top: -170px; }
  .team__card[data-index="1"] { margin-top: -220px; }
  .team__card[data-index="2"] { margin-top: -130px; }
}
@media (max-width: 480px) {
  .team__carousel {
    height: 340px;
  }
  .team__carousel-scene {
    perspective: 600px;
  }
  .team__card {
    width: 160px;
    margin-left: -80px;
  }
  .team__card[data-index="0"] { margin-top: -150px; }
  .team__card[data-index="1"] { margin-top: -190px; }
  .team__card[data-index="2"] { margin-top: -110px; }
}

/* ---------- FADE UP ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* ---------- HEADING REVEAL ---------- */
.heading-reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
}
.heading-reveal-char {
  display: inline-block;
  will-change: transform;
}

/* ---------- TYPEWRITER EFFECT ---------- */
.typewriter-cursor::after {
  content: '|';
  font-weight: 300;
  margin-left: 1px;
  animation: typewriter-blink 0.7s step-end infinite;
}
.typewriter-done::after {
  display: none;
}
@keyframes typewriter-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---------- EASTER EGGS ---------- */
.ee {
  display: inline;
  position: relative;
  cursor: default;
}

.ee:hover {
  cursor: pointer;
}

.ee.is-vibrating {
  display: inline-block;
  animation: ee-shake 0.4s ease-in-out;
}

@keyframes ee-shake {
  0%, 100% { transform: translateX(0); }
  10%      { transform: translateX(-1.5px) rotate(-0.5deg); }
  20%      { transform: translateX(1.5px) rotate(0.5deg); }
  30%      { transform: translateX(-1px) rotate(-0.3deg); }
  40%      { transform: translateX(1px) rotate(0.3deg); }
  50%      { transform: translateX(-0.5px); }
  60%      { transform: translateX(0.5px); }
  70%      { transform: translateX(-0.5px); }
  80%      { transform: translateX(0px); }
}

.ee-tooltip {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px) rotate(5deg) scale(0.9);
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.25));
}

.ee-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(-3deg) scale(1);
}

.ee-tooltip__gif {
  display: block;
  width: 160px;
  height: auto;
  border-radius: var(--radius-xs);
}

@media (max-width: 768px) {
  .ee-tooltip__gif {
    width: 120px;
  }
  .service-card__content {
    justify-content: center;
  }
  .hero {
    height: 70vh;
  }
  .hero__title-wrap {
    padding: 0;
  }
  .hero__title {
    font-size: 15.5vw;
  }
  .scroll-quote {
    min-height: 750px;
  }
}

/* ============================================
   OVER ONS PAGE
   ============================================ */

.over-ons-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-section) var(--section-padding-x) var(--space-lg);
  background: var(--color-black);
}

.over-ons-hero__inner {
  width: 100%;
  max-width: var(--container-wide);
}

.over-ons-hero__label {
  font-size: var(--fs-h5);
  color: var(--color-cyan);
  display: block;
  margin-bottom: var(--space-sm);
}

.over-ons-hero__heading {
  font-size: var(--fs-display-lg);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.over-ons-hero__accent {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .over-ons-hero {
    min-height: 50vh;
    padding-bottom: var(--space-md);
  }
}
