:root {
  --red: #e30613;
  --ink: #111;
  --muted: #666;
  --soft: #f5f5f3;
  --line: #dededb;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: #fff;
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #e6e6e4;
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  width: min(1280px, 100%);
  min-height: 82px;
  margin: auto;
  padding: 14px clamp(18px, 4vw, 42px);
}

.brand {
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  display: block;
  width: clamp(190px, 18vw, 260px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 27px);
  margin-left: auto;
}

.navlinks a {
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.navlinks a:hover {
  color: var(--red);
}

.navlinks .cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 19px;
  color: #fff;
  background: var(--red);
}

.navlinks .cta:hover {
  color: #fff;
  background: #b9040e;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid #cfcfcb;
  border-radius: 0;
  font: inherit;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  min-height: clamp(520px, 64vh, 650px);
  margin: 0;
  padding: clamp(72px, 8vw, 110px) max(24px, calc((100vw - 1210px) / 2));
  color: #fff;
  background: #111;
}

.hero .eyebrow,
.section .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 34px;
  color: var(--red);
  font-size: clamp(9px, .9vw, 12px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
}

.hero .eyebrow::before,
.section .eyebrow::before {
  flex: 0 0 34px;
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero h1 {
  max-width: 880px;
  margin: 0 0 26px;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.05em;
}

.hero h1 em,
.section h2 em {
  color: var(--red);
  font-style: normal;
}

.hero .lead {
  max-width: 850px;
  margin: 0 0 28px;
  color: #e1e1e1;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

.hero .lead::after {
  display: block;
  width: 96px;
  height: 6px;
  margin-top: 30px;
  content: "";
  background: var(--red);
}

.section {
  width: min(1210px, 100%);
  max-width: none;
  height: auto;
  margin: auto;
  padding: clamp(92px, 10vw, 148px) clamp(20px, 4vw, 42px);
  color: var(--ink);
  border: 0;
}

.section + .section {
  border-top: 0;
}

.section:nth-of-type(even) {
  background: #fff;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: end;
  margin: 0 0 clamp(48px, 6vw, 78px);
}

.section h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.052em;
}

.section-intro {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.75;
}

.about-grid,
.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.surface {
  min-width: 0;
  height: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.surface p {
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.8;
}

.surface strong {
  display: block;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 2px solid var(--ink);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  color: #fff;
  background: #151515;
  transition: transform .35s ease, box-shadow .35s ease;
}

.video-card::before {
  position: absolute;
  right: -30%;
  bottom: -52%;
  width: 110%;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, #e30613 0%, #97040c 36%, transparent 68%);
  filter: blur(8px);
  transition: transform .6s ease;
  pointer-events: none;
}

.video-card > * {
  position: relative;
  z-index: 1;
}

.video-card .eyebrow {
  margin-bottom: 18px;
  color: #fff;
}

.video-card h3 {
  max-width: 420px;
  margin: 0 0 18px;
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.video-card p {
  color: #ddd;
}

.video-button,
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 52px;
  margin-top: 22px;
  padding: 13px 22px;
  color: #fff;
  background: var(--red);
  border: 0;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.video-button:hover,
.contact-link:hover {
  color: var(--ink);
  background: #fff;
  transform: translateY(-3px);
}

#mededeling,
#media {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1210px) / 2));
  color: #fff;
  background: #111;
}

.notice {
  position: relative;
  width: min(1210px, 100%);
  margin: auto;
  padding-top: clamp(104px, 10vw, 132px);
  color: #fff;
}

.notice::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: clamp(66px, 6vw, 82px);
  height: clamp(66px, 6vw, 82px);
  color: #fff;
  content: "!";
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(227, 6, 19, .12);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  transform-origin: center;
  animation: notice-heartbeat 2.1s ease-in-out infinite;
}

@keyframes notice-heartbeat {
  0%,
  32%,
  100% {
    box-shadow: 0 0 0 12px rgba(227, 6, 19, .12);
    transform: scale(1);
  }

  10% {
    box-shadow: 0 0 0 17px rgba(227, 6, 19, .2);
    transform: scale(1.13);
  }

  18% {
    box-shadow: 0 0 0 12px rgba(227, 6, 19, .12);
    transform: scale(1);
  }

  24% {
    box-shadow: 0 0 0 15px rgba(227, 6, 19, .17);
    transform: scale(1.07);
  }
}

.notice .eyebrow {
  color: #fff;
}

.notice h2 {
  max-width: 920px;
  margin: 0 0 clamp(32px, 4vw, 52px);
  color: #fff;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.08;
}

.notice p {
  max-width: 980px;
  color: #cecece;
}

.notice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0;
}

.notice-item {
  position: relative;
  min-width: 0;
  min-height: 170px;
  padding: 64px 24px 26px;
  color: #eee;
  background: #1c1c1c;
  border: 1px solid #353535;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease;
}

.notice-item::before {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--red);
  content: "✓";
  font-weight: 800;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quality-card {
  position: relative;
  min-width: 0;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.quality-card::before {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  color: #fff;
  content: "👍";
  background: var(--red);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  filter: none;
}

.quality-card h3 {
  margin: 0 0 16px;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
}

.quality-card p {
  margin: 0;
  color: var(--muted);
}

#media > * {
  width: min(1210px, 100%);
  margin-inline: auto;
}

#media .section-head .eyebrow {
  color: #fff;
}

#media .section-head h2,
#media .section-intro {
  color: #fff;
}

#media .section-intro {
  color: #cecece;
}

#media .media-grid {
  gap: 12px;
  align-items: stretch;
  background: transparent;
}

#media .surface {
  height: 100%;
  padding: clamp(30px, 4vw, 50px);
  color: #fff;
  background: #171717;
  border: 1px solid #353535;
}

#media .surface p {
  color: #d0d0d0;
}

#media .surface strong {
  border-color: #fff;
}

#ervaringen {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1210px) / 2));
  background: var(--soft);
}

#ervaringen > * {
  width: min(1210px, 100%);
  margin-inline: auto;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 290px;
  padding: 30px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.testimonial p {
  color: #505050;
}

.stars,
.author {
  color: var(--red);
}

.testimonial .author {
  margin-top: auto;
  padding-top: 22px;
}

.testimonial.is-collapsed {
  display: none;
}

.reviews-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 30px auto 0;
  padding: 13px 23px;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.reviews-toggle:hover {
  background: var(--red);
}

.footer {
  margin-top: 0;
  color: #fff;
  background: #111;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: min(1210px, 100%);
  max-width: none;
  margin: auto;
  padding: 68px clamp(20px, 4vw, 42px);
}

.footer h3 {
  color: #fff;
}

.footer h3::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 12px;
  vertical-align: middle;
  content: "";
  background: var(--red);
}

.footer p,
.footer a {
  color: #c8c8c8;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .video-card:hover {
    box-shadow: 0 24px 65px rgba(100, 0, 0, .22);
    transform: translateY(-5px);
  }

  .video-card:hover::before {
    transform: translate(-12%, -10%) scale(1.13);
  }

  .notice-item:hover,
  .quality-card:hover,
  .testimonial:hover {
    color: #fff;
    background: #151515;
    border-color: var(--red);
    box-shadow: 0 20px 48px rgba(82, 0, 0, .16);
    transform: translateY(-5px);
  }

  .notice-item:hover p,
  .quality-card:hover p,
  .testimonial:hover p {
    color: #d5d5d5;
  }
}

@media (max-width: 1050px) {
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notice-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .notice-item {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .navlinks {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 82px);
    margin: 0;
    padding: 14px 20px 26px;
    overflow-y: auto;
    color: var(--ink);
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks a {
    padding: 14px 4px;
    border-bottom: 1px solid #ededeb;
  }

  .navlinks .cta {
    margin-top: 14px;
    padding-inline: 18px;
    border-bottom: 0;
    text-align: center;
  }

  .section-head {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .about-grid,
  .media-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand img {
    width: clamp(170px, 54vw, 205px);
  }

  .nav,
  .hero,
  .section,
  .footer-grid {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 56px);
    overflow-wrap: anywhere;
  }

  .hero .lead {
    font-size: 18px;
  }

  .section h2,
  .notice h2 {
    font-size: clamp(38px, 11vw, 50px);
    overflow-wrap: anywhere;
  }

  .notice {
    padding-top: 94px;
  }

  .quality-grid,
  .testimonials {
    grid-template-columns: minmax(0, 1fr);
  }

  .quality-card,
  .testimonial {
    min-height: 0;
  }

  #mededeling,
  #media,
  #ervaringen {
    padding-right: 18px;
    padding-left: 18px;
  }

  .video-button,
  .contact-link {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}
