:root {
  /* Afgeleid uit Showit output: banner geel + beige hover-accent + zwart/wit feel */
  --bg: #ffffff;
  --text: #000000;
  --muted: rgba(0, 0, 0, .70);
  --accent: #f7a224;
  /* topbar/cta geel */
  --accent2: rgb(0, 0, 0);
  /* hover accent */
  --cream: #f6f2ec;
  --grey: #222222;
  --green: #3c7700;
  --orange: #b14008;

  --container: 1120px;

  --oswald: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --roboto: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --almarai: "Almarai", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --pinyon: "Pinyon Script", "Times New Roman", serif;

  --radius: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--bg);
  font-family: var(--almarai);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.no-scroll {
  overflow: hidden;
}

/* Topbar */
.topbar {
  background: var(--grey);
  border-bottom: 1px solid #ffffff;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 0;
}

.topbar__text {
  margin: 0;
  font-family: var(--roboto);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
}

.topbar__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
}

/* Header */
.header {
  background: var(--text)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  gap: 10px;
}

.header__rule {
  height: 0.5px;
  background: #ffffff50;
  width: 100%;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.brand__boujee {
  font-family: var(--oswald);
  font-weight: 600;
  letter-spacing: -0.05em;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
}

.brand__lemon {
  font-family: var(--pinyon);
  font-size: 28px;
  line-height: .9;
  transform: translateY(-2px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--roboto);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav a {
  opacity: .95;
}

.nav a:hover {
  opacity: 1;
}

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #000;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  margin: 5px auto;
}

/* Mobile menu */
.mobilemenu {
  background: #000;
  color: #fff;
}

.mobilemenu__inner {
  display: grid;
  gap: 10px;
  padding: 18px 0 22px;
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}

.mobilemenu a {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
}

.mobilemenu a:hover {
  color: var(--accent);
  border-color: rgba(248, 249, 111, .7);
}

/* Hero */
/* HERO */
.hero {
  position: relative;
  height: 680px;
  /* kies wat past */
  overflow: hidden;
  color: #fff;
}

/* Video zelf */
/* Zorg dat dit bestaat */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Donkere overlay */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, 0.562);
  /* donkerte */
  z-index: 1;
  pointer-events: none;
}

/* Blokjes texture */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  /* blokjes patroon */
  background-image:
    linear-gradient(rgba(65, 65, 65, 0.664) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 78, 78, 0.61) 1px, transparent 1px);

  background-size: 8px 8px;
  /* grootte van de blokjes */
  opacity: .60;
  mix-blend-mode: overlay;
}

/* Content boven de video */
.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

/* CTA bovenin */

.hero__pill {
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}

.hero__arrow {
  margin-left: auto;
  font-size: 22px;
}

.hero__content {
  color: #fff;
  max-width: 820px;
}

.title {
  margin: 0 0 14px;
  font-family: var(--oswald);
  font-weight: 600;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(34px, 5vw, 86px);
}

.lead {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  max-width: 62ch;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}

.btn--primary {
  background: var(--accent);
  border: 2px solid #000;
}

.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .8);
  color: #fff;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* button styling zoals screenshot */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  background: var(--green);
  border: 2px solid #000;
  color: #000;
  text-decoration: none;

  height: 44px;
  padding: 0 18px;
  min-width: 170px;

  font-family: var(--roboto, "Roboto", sans-serif);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;

  box-shadow: none;
}

/* label links */
.hero-btn__label {
  display: inline-block;
}

/* arrow rechts */
.hero-btn__arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .25s cubic-bezier(.2, .8, .2, 1);
}

/* hover: kleine beweging zoals “premium” feel */
.hero-btn:hover .hero-btn__arrow {
  transform: translate(4px, -1px);
}

/* focus zichtbaar */
.hero-btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, .35);
  outline-offset: 3px;
}

/* Marquee */
.marquee {
  background: var(--grey);
  border-top: 0.5px solid #ffffff52;
  border-bottom: 0.5px solid #ffffff52;
  overflow: hidden;
}

.marquee__track {
  display: inline-block;
  white-space: nowrap;
  padding: 12px 0;
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  animation: scroll 18s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.section {
  padding: 70px 0;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: #fff;
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.heading {
  margin: 0;
  font-family: var(--almarai);
  font-weight: 400;
  letter-spacing: -0.05em;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.1;
}

.copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.card__icon {
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: var(--accent);
}

.subheading {
  margin: 0 0 8px;
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}

.card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

/* Split (tabs vibe) */
.split {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 34px;
  align-items: center;
}

.split__media {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .10);
}

.split__img {
  height: 560px;
  background:
    url("//static.showit.co/800/CTQXHbHbS7yFr5fTil2Ufw/135807/pexels-liza-bakay-10331694.jpg") center/cover no-repeat;
  transform: scale(1.02);
  transition: transform .5s ease;
}

.split__media:hover .split__img {
  transform: scale(1.06);
}

.kicker {
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  margin-bottom: 10px;
}

.split__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.linkpill {
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
}

.linkpill:hover {
  border-color: #000;
  background: var(--accent);
}

/* Two images */
.images2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.images2__img {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.images2__img--a {
  background-image: url("//static.showit.co/1200/Y0XMmt09STqGpnMmQS6aIQ/135807/mathilde-langevin-izb7w07tvxq-unsplash.jpg");
}

.images2__img--b {
  background-image: url("//static.showit.co/1200/vYYWuiHyQkyDt3GpKFiHsg/135807/sedona-484.jpg");
}

/* Footer */
.footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .15);
  padding: 26px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, .7);
}

.footer__link {
  font-size: 13px;
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .hero__cta {
    width: 210px;
    height: 70px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .split__img {
    height: 380px;
  }

  .images2 {
    grid-template-columns: 1fr;
  }
}

/* Black blocks under header */
.navblocks {
  background: #fff;
  border-bottom: 1px solid #000;
}

.navblocks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 0 16px;
}

.navblock {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .18s ease, background .18s ease;
}

.navblock__title {
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}

.navblock__sub {
  font-family: var(--almarai);
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.35;
}

.navblock:hover {
  transform: translateY(-1px);
  background: #0f0f0f;
}

/* Responsive */
@media (max-width: 980px) {
  .navblocks__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .navblocks__grid {
    grid-template-columns: 1fr;
  }
}

/* === BLACK BLOCKS (onder de marquee) === */
.black-blocks {
  background: #fff;
  padding: 18px 0 8px;
}

.black-blocks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.black-block {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;

  transition: color .25s ease, transform .25s ease;
}

.black-block:hover {
  color: var(--accent);
  /* geel zoals op de site */
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .black-blocks__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .black-block {
    height: 58px;
  }
}

/* === YELLOW FULL-WIDTH ROWS (HOW WE CAN WORK TOGETHER) === */
.yellow-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.yellow-row {
  width: 100%;
  background: var(--accent);
  /* geel */
  color: #000;
  border: 2px solid #000;
  height: 62px;

  display: flex;
  align-items: center;
  padding: 0 18px;

  font-family: var(--oswald);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 28px;
  line-height: 1;

  transition: background .25s ease, color .25s ease, transform .25s ease;
}

/* op de echte site gaat de tekstkleur “wit” op hover (dus achtergrond donker) */
.yellow-row:hover {
  background: #000;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .yellow-row {
    font-size: 22px;
    height: 58px;
  }
}

/* === 3 zwarte kolommen (zoals Boujee Lemón / three-column-services) === */
.three-services {
  background: #000;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .0);
  /* geen opvallende rand */
  border-bottom: 1px solid #000;
  /* sluit aan op volgende sectie */
}

.three-services__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 360px;
  /* dit geeft die “grote zwarte blokken” feel */
}

.three-services__col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
  text-decoration: none;
  cursor: default;
}

.three-services__col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, .35);
  /* dunne verticale lijn */
}

.three-services__icon {
  font-size: 26px;
  line-height: 1;
  transform: translateY(-8px);
  opacity: .95;
}

.three-services__text {
  text-align: center;
  font-family: var(--almarai, "Almarai", sans-serif);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: .02em;
}

/* gewichten (zoals in screenshot: soms 1 woord vet) */
.three-services__text .w-bold {
  font-weight: 700;
}

.three-services__text .w-light {
  font-weight: 300;
}

/* hover is subtiel, niet “button-ish” */
.three-services__col:hover {
  background: rgb(0, 0, 0);
}

/* responsive: stapelen */
@media (max-width: 980px) {
  .three-services__inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .three-services__col {
    min-height: 180px;
  }

  .three-services__col:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
  }
}

/* === Mid rails (vertical bars) + click motion === */
.mid-rails {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.mid-rails__frame {
  display: grid;
  grid-template-columns: 1.05fr 70px 1fr;
  /* foto | rails | tekst */
  min-height: 560px;
  overflow: hidden;
}

/* LEFT: image stack */
.mid-rails__media {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, .35);
  background: #e9e9e9;
}

.mid-rails__img {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;

  opacity: 0;
  transform: translateX(28px) scale(1.01);
  /* komt vanuit rails-gebied */
  transition: opacity .35s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

.mid-rails__img.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* MIDDLE: rails (smalle verticale balken) */
/* MIDDLE: rails naast elkaar (verticale balken) */
.mid-rails__rails {
  display: flex;
  flex-direction: row;
  /* <-- naast elkaar */
  align-items: stretch;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, .35);
  border-right: 1px solid rgba(0, 0, 0, .35);
}

.mrail {
  flex: 1;
  position: relative;
  border: 0;
  padding: 0;
  background: #fff;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mrail:last-child {
  border-bottom: 0;
}

.mrail__plus {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  line-height: 1;
  opacity: .85;
  color: #000;
}

.mrail__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--roboto, "Roboto", sans-serif);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: #000;
  opacity: .9;
}

.mrail:hover {
  background: rgba(0, 0, 0, .03);
}

.mrail.is-active {
  background: rgba(0, 0, 0, .02);
}

/* RIGHT: content stack */
.mid-rails__content {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.mcontent {
  position: absolute;
  inset: 0;
  padding: 90px 80px 70px;

  opacity: 0;
  transform: translateX(-28px);
  /* komt vanuit rails-gebied */
  transition: opacity .35s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

.mcontent.is-active {
  opacity: 1;
  transform: translateX(0);
}

/* Typography */
.mcontent__title {
  margin: 0 0 22px;
  font-family: var(--almarai, "Almarai", sans-serif);
  font-weight: 300;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1.1;
  color: #000;
}

.mcontent__title .em {
  font-weight: 700;
}

.mcontent__strong {
  margin: 0 0 18px;
  font-family: var(--almarai, "Almarai", sans-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
}

.mcontent__copy {
  margin: 0;
  max-width: 62ch;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(0, 0, 0, .70);
}

/* Responsive */
@media (max-width: 980px) {
  .mid-rails__frame {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .mid-rails__media {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .35);
    min-height: 360px;
  }

  .mid-rails__img {
    transform: translateY(18px) scale(1.01);
  }

  .mid-rails__img.is-active {
    transform: translateY(0) scale(1);
  }

  .mid-rails__rails {
    flex-direction: row;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(0, 0, 0, .35);
    border-bottom: 1px solid rgba(0, 0, 0, .35);
  }

  .mrail {
    border-right: 1px solid rgba(0, 0, 0, .35);
    min-height: 70px;
  }

  .mrail:last-child {
    border-right: 0;
  }

  .mrail__label {
    writing-mode: horizontal-tb;
    transform: none;
    padding-top: 18px;
  }

  .mcontent {
    position: relative;
    padding: 34px 22px 38px;
    transform: translateY(-10px);
  }

  .mcontent.is-active {
    transform: translateY(0);
  }
}

/* === 3 rails in the middle + motion === */
.mid3 {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, .15);
}

.mid3__frame {
  display: grid;
  grid-template-columns: 1.05fr 168px 1fr;
  /* foto | 3 rails | tekst */
  min-height: 620px;
  overflow: hidden;
}

/* LEFT: image stack */
.mid3__left {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(0, 0, 0, .35);
  background: #e9e9e9;
}

.mid3__img {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;

  opacity: 0;
  transform: translateX(26px) scale(1.02);
  /* komt vanuit rails */
  transition: opacity .35s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

.mid3__img.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* outgoing anim (naar links + fade) */
.mid3__img.is-leaving {
  opacity: 0;
  transform: translateX(-22px) scale(1.01);
}

/* MIDDLE: 3 vertical bars next to each other */
.mid3__rails {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.705);
  border-right: 1px solid rgba(0, 0, 0, 0.705);
}

.mid3__rail {
  width: 56px;
  border: 0;
  background: transparent;
  /* of #fff, afhankelijk van jouw design */
  cursor: pointer;
  position: relative;

  border-right: 1px solid rgba(0, 0, 0, 0.705);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mid3__rail:last-child {
  border-right: 0;
}

.mid3__plus {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 30px;
  line: height 1px;
  opacity: .85;
  color: #b14008;

  /* micro motion base */
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.mid3__label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--roboto, "Roboto", sans-serif);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  color: #000;
  opacity: .9;
}

.mid3__rail:hover {
  background: rgba(0, 0, 0, .03);
}

.mid3__rail.is-active {
  background: rgba(0, 0, 0, .02);
}

/* Press + bounce effect */
.mid3__rail.is-pressed {
  background: rgba(0, 0, 0, .04);
}

.mid3__rail.is-pressed .mid3__plus {
  transform: translateX(-50%) rotate(45deg) scale(1.05);
}

/* RIGHT: content stack */
.mid3__right {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.mid3__panel {
  position: absolute;
  inset: 0;
  padding: 70px 70px 70px;

  opacity: 0;
  transform: translateX(-26px);
  /* komt vanuit rails */
  transition: opacity .35s ease, transform .65s cubic-bezier(.2, .8, .2, 1);
}

.mid3__panel.is-active {
  opacity: 1;
  transform: translateX(0);
}

.mid3__panel.is-leaving {
  opacity: 0;
  transform: translateX(22px);
}

/* Typography */
.mid3__title {
  margin: 0 0 22px;
  font-family: var(--almarai, "Almarai", sans-serif);
  font-weight: 300;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1.1;
  color: #000;
}

.mid3__title .em {
  font-weight: 700;
}

.mid3__strong {
  margin: 0 0 18px;
  font-family: var(--almarai, "Almarai", sans-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
}

.mid3__copy {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(0, 0, 0, .70);
}

/* MID3: kruisje blijft gedraaid als rail actief is */
.mid3__rail.is-active .mid3__plus{
  transform: translateX(-50%) rotate(45deg);
}


/* Responsive */
@media (max-width: 980px) {

  /* Layout: image -> buttons -> content */
  .mid3__frame {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "rails"
      "content";
  }

  .mid3__left {
    grid-area: image;
    min-height: 320px;
    border-right: 0;
  }

  .mid3__rails {
    grid-area: rails;
  }

  .mid3__right {
    grid-area: content;
  }

  /* Buttons onder elkaar, full width */
  .mid3__rails {
    flex-direction: column;
    width: 100%;
    border-left: 0;
    border-right: 0;
  }

  .mid3__rail {
    width: 100%;
    min-height: 64px;
    border-right: 0;

    /* belangrijk: we gaan + absoluut positioneren */
    position: relative;

    /* horizontale tekst */
    display: flex;
    align-items: center;
    justify-content: center;

    /* ruimte links voor het kruisje */
    padding: 14px 18px 14px 52px;
  }

  /* Kruisje links */
  .mid3__plus {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
  }

  /* Label horizontaal + gecentreerd */
  .mid3__label {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    text-align: center;
    padding-top: 0;
    line-height: 1.2;
  }
}

@media (max-width: 980px) {
  .mid3__rail.is-active .mid3__plus {
    transform: translateY(-50%) rotate(45deg);
  }
}

@media (max-width: 980px) {
  .mid3__title {
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.15;
  }
}

/* === Yellow bar under the mid3 block === */
.mid3-yellow {
  background: var(--accent, #f8f96f);
  border-top: 1px solid #000;
}

.mid3-yellow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  font-family: var(--roboto, "Roboto", sans-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  color: #000;
}

/* === Micro animation: plus rotates + label “pops” === */
@keyframes railPop {
  0% {
    transform: rotate(180deg) scale(1);
  }

  45% {
    transform: rotate(180deg) scale(1.12);
  }

  100% {
    transform: rotate(180deg) scale(1);
  }
}

/* Zorg dat de label transform netjes kan animeren */
.mid3__label {
  /* behoud jouw huidige regels, maar voeg dit toe/laat dit staan: */
  transform-origin: 50% 50%;
}

/* Wanneer ingedrukt: + draait en label popt */
.mid3__rail.is-pressed .mid3__label {
  animation: railPop 420ms cubic-bezier(.2, .8, .2, 1);
}

/* === Yellow service rows (no gaps) === */
.service-list {
  background: var(--accent, #f8f96f);

}

.service-list__header {
  padding: 18px 0 0;
}

.service-list__header p {
  margin: 0;
  text-align: center;
  font-family: var(--roboto, "Roboto", sans-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  color: #000;
}

.service-list__items {
  margin-top: 20px;
}

/* each row */
.service-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* no gaps: full width blocks stacked */
  width: 100%;
  padding: 34px 44px;
  background: var(--green, #f8f96f);
  color: #000;
  text-decoration: none;
  border-top: 1px solid #000;
  /* divider lines */
}

.service-item:last-child {
  border-bottom: 1px solid #000;
}

.service-item__text {
  position: relative;
  font-family: var(--oswald, "Oswald", sans-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  transition: transform .2s ease, font-variation-settings .2s ease;
}

.service-item__arrow {
  font-size: 28px;
  line-height: 1;
}

/* tekst bepaalt de underline breedte */
.service-item__text {
  position: relative;
  display: inline-block;
  /* essentieel: breedte = tekst */
}

/* underline alleen onder de tekst */
.service-item__text::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f7a224;

  bottom: -10px;
  /* afstand onder tekst — tweak naar smaak */

  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

/* alleen bij hover zichtbaar */
.service-item:hover .service-item__text::after {
  transform: scaleX(1);
}

/* HOVER: font change + underline appears */
.service-item:hover .service-item__text {
  font-family: var(--roboto, "Roboto", sans-serif);
  /* font veranderd */
  font-weight: 700;
}

.service-item:hover .service-item__underline {
  transform: scaleX(1);
}

/* Zorg dat service-items altijd hun eigen kleur bepalen (niet globale a:hover) */
.service-item{
  color: #000;
}

/* OPEN/ACTIEF: titel + arrow geel en arrow blijft gedraaid */
.service-item[aria-expanded="true"] .service-item__text{
  color: var(--accent);
}

.service-item[aria-expanded="true"] .service-item__arrow{
  color: var(--accent);
  transform: rotate(45deg);
}

/* Optioneel: underline/after ook “aan” als actief */
.service-item[aria-expanded="true"] .service-item__text::after{
  transform: scaleX(1);
}


/* footer */
.service-list__footer {
  padding: 28px 44px 34px;
}

.service-all {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--roboto, "Roboto", sans-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  color: #000;
  text-decoration: none;
}

.service-all:hover {
  text-decoration: underline;
}

/* responsive */
@media (max-width: 980px) {
  .service-item {
    padding: 26px 22px;
  }

  .service-item__underline {
    left: 22px;
    right: 22px;
  }

  .service-list__footer {
    padding: 22px 22px 28px;
  }
}

.service-item__arrow {
  font-size: 62px;
  /* groter maken (was ~28px) */
  line-height: 1;
  display: inline-block;

  transition:
    transform .35s cubic-bezier(.2, .8, .2, 1);
  /* smooth rotation */
}

/* bij hover op de hele balk */
.service-item:hover .service-item__arrow{
  transform: none;
}


/* Wrapper bepaalt altijd de maat (60x60 blijft 60x60) */
/* Link */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}

/* HARD SIZE: dit element bepaalt de maat */
.brand__logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  /* voorkomt flex-krimp */
}

/* Animatie gebeurt BINNEN de 60x60 box */
.brand__logoAnim {
  width: 100%;
  height: 100%;
  display: block;

  animation: logoBreath 6.5s ease-in-out infinite;
  transform-origin: 50% 50%;
}

/* SVG mag NOOIT groter worden dan de box */
.brand__svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Jouw Illustrator fill fix */
.brand__svg .st0 {
  fill: currentColor;
}

/* Hover (werkt samen met animatie) */
.brand:hover .brand__logoAnim {
  transform: scale(1.04);
}

.brand__logoAnim {
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .brand__logoAnim {
    animation: none;
  }
}

/* --- Layout: logo links, tekst rechts --- */
.hero__row {
  display: flex;
  align-items: center;
  /* verticale balans */
  gap: 32px;
  /* iets meer lucht */
}

.hero__logoWrap {
  width: 300px;
  height: 300px;
  flex: 0 0 300px;
  position: relative;
}

.hero__logo {
  width: 100%;
  height: 100%;
  display: block;
}

/* --- Button (als je die gebruikt) --- */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  background: var(--green);
  color: #fff;
  border: 2px solid #fff;

  height: 44px;
  min-width: 190px;
  padding: 0 18px;

  font-family: var(--roboto, "Roboto", sans-serif);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;

  border-radius: 0;
  text-decoration: none;
}

.hero-btn::after {
  content: "→";
  font-size: 22px;
  line-height: 1;
  margin-left: 22px;
  color: #fff;
}

.hero-btn:hover {
  cursor: pointer;
  background: #000;
  color: #fff;
}


/* Responsive */
@media (max-width: 900px) {
  .hero__row {
    flex-direction: column;
    gap: 14px;
  }

  .hero__logoWrap {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    margin-top: 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .hero__logoWrap,
  .hero__logo {
    animation: none !important;
  }

  .hero__logoWrap:hover .hero__logo {
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero__logoWrap {
    width: 140px;
    height: 140px;
    flex: 0 0 140px;
  }
}

.hero__content .title {
  -webkit-box-orient: vertical;

}

.hero__content {
  max-width: 960px;
  /* was ~820 */
}

@media (max-width: 900px) {
  .hero__content .title {
    -webkit-line-clamp: unset;
  }

  .hero__content {
    max-width: 100%;
  }
}

/* HERO: logo boven tekst op mobile */
@media (max-width: 900px) {
  .hero__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
  }

  .hero__logoWrap {
    width: 140px;
    height: 140px;
    flex: 0 0 140px;
  }

  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__text .title {
    margin-bottom: 18px;
  }
}

/* HERO mobile: alles mooi gecentreerd (override) */
@media (max-width: 900px) {
  .hero__inner {
    align-items: center;
    /* verticaal centreren */
  }

  .hero__content {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }

  .hero__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
    /* ruimte tussen logo & tekst */
    padding-top: 40px;
    /* extra lucht boven */
    padding-bottom: 40px;
    /* extra lucht onder */
  }

  .hero__logoWrap {
    width: 140px;
    height: 140px;
    flex: 0 0 140px;
  }

  .hero__text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__text .title {
    margin-bottom: 20px;
  }
}

/* =========================
   FOOTER (zoals screenshot)
========================= */
.site-footer {
  background: #000;
  color: #fff;
}

/* Top blok */
.site-footer__top {
  padding: 64px 0 48px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr;
  gap: 44px;
  align-items: start;
}

/* Left */
.site-footer__logo {
  font-family: var(--oswald, system-ui);
  font-weight: 700;
  letter-spacing: .01em;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.site-footer__lead {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28ch;
}

.site-footer__lead strong {
  color: #fff;
}

.site-footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  min-width: 200px;
  padding: 0 18px;

  background: var(--accent, #f8f96f);
  color: #000;
  border: 2px solid #000;
  text-decoration: none;

  font-family: var(--roboto, system-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
}

/* Middle nav */
.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-top: 10px;
}

.site-footer__navcol {
  display: grid;
  gap: 22px;
}

.site-footer__nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--roboto, system-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  opacity: .95;
}

.site-footer__nav a:hover {
  opacity: 1;
  color: var(--accent, #f8f96f);
}

/* Right */
.site-footer__social {
  justify-self: end;
  text-align: right;
  padding-top: 6px;
}

.site-footer__script {
  font-family: var(--roboto, system-ui);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .92);
}

.site-footer__icons {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.site-footer__icons a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: var(--roboto, system-ui);
  font-weight: 700;
  opacity: .95;
}

.site-footer__icons a:hover {
  border-color: var(--accent, #f8f96f);
  color: var(--accent, #f8f96f);
  opacity: 1;
}

.site-footer__contact {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--roboto, system-ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}

.site-footer__contact:hover {
  color: var(--accent, #f8f96f);
}

/* Rules */
.site-footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.11);
}

/* Image strip */
.site-footer__strip {
  padding: 12px 0;
  overflow: hidden;
}

.site-footer__striptrack {
  display: flex;
  gap: 12px;
  padding: 0 12px;
  overflow: auto;
  scroll-snap-type: x mandatory;
}

.site-footer__striptrack::-webkit-scrollbar {
  height: 8px;
}

.site-footer__striptrack::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .22);
  border-radius: 999px;
}

.site-footer__tile {
  flex: 0 0 230px;
  height: 210px;
  display: block;
  border: 2px solid rgba(255, 255, 255, .22);
  background: #111;
  overflow: hidden;
  scroll-snap-align: start;
}

.site-footer__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.site-footer__tile:hover img {
  transform: scale(1.08);
}

/* Bottom bar */
.site-footer__bottom {
  padding: 16px 0 18px;
}

.site-footer__bottominner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-footer__copy {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.site-footer__credit {
  justify-self: end;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  text-decoration: none;
}

.site-footer__credit:hover {
  color: var(--accent, #f8f96f);
}

.site-footer__totop {
  justify-self: center;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--accent, #f8f96f);
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  border-radius: 999px;
}

.site-footer__totop:hover {
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__social {
    justify-self: start;
    text-align: left;
  }

  .site-footer__icons {
    justify-content: flex-start;
  }

  .site-footer__nav {
    gap: 34px;
  }

  .site-footer__bottominner {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .site-footer__credit {
    justify-self: center;
  }
}

/* =========================
   FOOTER LOGO MARQUEE
========================= */
.logo-marquee {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding: 12px 0;
}

.logo-marquee__mask {
  overflow: hidden;
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: logoScroll 18s linear infinite;
}

/* Let op: -50% werkt omdat je nu 2 sets hebt */
@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.logo-tile {
  width: 220px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .02);
}

.logo-tile img {
  display: block;
  max-width: 75%;
  max-height: 60%;
  object-fit: contain;

  /* BELANGRIJK: laat ze sowieso zichtbaar zijn */
  filter: none;
  /* zet uit als je eerder invert gebruikte */
  opacity: .95;
}

/* Als je logo’s zwart zijn op zwart: maak ze wit (probeer dit) */
.logo-tile img {
  filter: brightness(0) invert(1);
}

/* =========================
   LOGO STRIP (1 rij, cards)
========================= */
.logo-strip {
  background: #000000;
  padding: 18px 0;
  position: relative;
}

/* Fade links/rechts zoals voorbeeld */
.logo-strip::before,
.logo-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.logo-strip::before {
  left: 0;
  background: linear-gradient(90deg, #000000 0%, rgba(11, 11, 11, 0) 100%);
}

.logo-strip::after {
  right: 0;
  background: linear-gradient(270deg, #000000 0%, rgba(11, 11, 11, 0) 100%);
}

.logo-strip__mask {
  overflow: hidden;
}

/* Track die oneindig beweegt */
.logo-strip__track {
  --shift: 1200px;
  /* JS overschrijft dit */
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: logoStripScroll 120s linear infinite;
  will-change: transform;
}

@keyframes logoStripScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--shift)));
  }
}

/* Card look */
.logo-card {
  flex: 0 0 auto;
  width: 240px;
  height: 160px;
  border-radius: 1px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);

  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.logo-card:hover {
  transform: translateY(-1px);
  border-color: rgb(0, 0, 0);
  background: rgb(0, 0, 0);
}

/* Logo sizing */
.logo-card img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  /* Op zwart meestal nice: wit maken */
  filter: brightness(0) invert(1);
  opacity: .9;
}

.logo-card:hover img {
  opacity: 1;
}

/* Pauze bij hover (optioneel) */
.logo-strip:hover .logo-strip__track {
  animation-play-state: paused;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .logo-strip__track {
    animation: none;
  }
}

/* Mobile: cards iets smaller */
@media (max-width: 900px) {
  .logo-card {
    width: 200px;
    height: 148px;
  }
}

.hero__subtitle {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .04em;
  text-transform: capitalize;

  color: rgba(255, 255, 255, .75);
  /* op donkere hero */
  display: flex;
  align-items: center;
  gap: 10px;
}

/* verticale pipe */
.hero__subtitle-sep {
  color: #ffffff;
  /* jouw accentkleur */
  font-weight: 600;
}

.hero__subtitle::before {
  content: "";
  width: 18px;
  height: 2px;
  background: #4c9701;
  display: inline-block;
}

/* container van je icon */
.three-services__icon {
  width: 44px;
  /* pas aan naar smaak */
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  /* basis kleur (wordt gebruikt door currentColor) */
}

/* svg zelf */
.three-services__svg {
  width: 100%;
  height: 100%;
  display: block;

  transform-origin: 50% 50%;
  transition:
    transform .28s cubic-bezier(.2, .8, .2, 1),
    filter .28s cubic-bezier(.2, .8, .2, 1),
    color .28s ease;
}

/* OVERRIDE illustrator wit → laat hem de container-kleur volgen */
.three-services__icon .st0 {
  fill: currentColor !important;
}

/* hover over hele kolom: icon “pop” + kleur + glow */
.three-services__col:hover .three-services__icon {
  color: #f7a224;
}

.three-services__col:hover .three-services__svg {
  transform: translateY(-2px) scale(1.08);
  filter:
    drop-shadow(0 0 8px rgba(100, 200, 0, .35)) drop-shadow(0 0 18px rgba(100, 200, 0, .18));
}

/* Accordion panels onder de gele service items */
.service-panel {
  max-height: 0;
  overflow: hidden;

  background: linear-gradient(180deg,
      #3c7700 0%,
      #115700 100%);

  color: #ecffca;
  transition: max-height .35s cubic-bezier(.2, .8, .2, 1);
  border-bottom: 2px solid #000;
}


.service-panel__inner {
  padding: 18px 18px 80px;
  padding-left: 44px;
  /* 👈 magic number */
  font-family: var(--almarai, "Almarai", sans-serif);
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.service-panel__inner p {
  max-width: 68ch;
  /* ≈ ideale leesbreedte */
}


.service-panel.is-open {
  max-height: 600px;
  /* mag hoger als je veel tekst hebt */
}

@media (max-width: 980px) {
  .service-panel__inner {
    padding-left: 22px;
  }
}

.service-panel__inner {
  position: relative;
  /* nodig voor absolute positioning */
}

/* Logo rechts in de "blauwe cirkel" */
.service-panel__logo {
  position: absolute;
  right: 20px;
  /* meer naar links/rechts tunen */
  top: 2px;
  /* meer naar boven/beneden tunen */
  width: 520px;
  /* grootte tunen */
  max-width: 35%;
  height: auto;

  opacity: .95;
  pointer-events: none;
  /* klik gaat door naar accordion */
}

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

@media (max-width: 980px) {

  /* Zorg dat alleen het actieve panel ruimte inneemt */
  .mid3__panel {
    display: none;
    /* <-- key fix */
    position: relative;
    inset: auto;
    opacity: 1;
    /* opacity animaties zijn op mobiel niet nodig */
    transform: none;
  }

  .mid3__panel.is-active {
    display: block;
  }
}

/* Zorg dat we kunnen overlappen */
.three-services__col {
  position: relative;
  overflow: hidden;
}

/* Description standaard onzichtbaar */
.three-services__desc {
  position: absolute;
  inset: 0;
  padding: 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* 👈 horizontaal centreren */

  text-align: center;
  /* 👈 tekst centreren */

  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

/* Icon + tekst verdwijnen op hover/focus */
.three-services__icon,
.three-services__text {
  transition: opacity .2s ease, transform .25s ease;
}

.three-services__col:hover .three-services__icon,
.three-services__col:hover .three-services__text,
.three-services__col:focus-visible .three-services__icon,
.three-services__col:focus-visible .three-services__text {
  opacity: 0;
  transform: translateY(-6px);
}

/* Description verschijnt op hover/focus */
.three-services__col:hover .three-services__desc,
.three-services__col:focus-visible .three-services__desc {
  opacity: 1;
  transform: translateY(0);
}

/* Typo description */
.three-services__descTitle {
  font-family: var(--roboto);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 18px;
  margin-bottom: 12px;
}

.three-services__descText {
  font-style: italic;
  position: relative;
  margin: 0;
  font-family: var(--almarai);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  max-width: 46ch;
}

.three-services__descText::before {
  content: "";
  margin-right: 4px;
}

.three-services__descText::after {
  content: "";
  margin-left: 4px;
}

.social-icon {
  color: #fff;
  /* of #000 */
  display: inline-flex;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 0.7;
}