.erv-verhaal {
  position: relative;
}
.erv-reis {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  pointer-events: none;
}
.erv-reis__svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.erv-reis__svg path {
  fill: none;
  stroke: none;
}
.erv-reiziger {
  position: absolute;
  left: -200px;
  top: -200px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 12px 28px #000e3029;
  transform: translate(-50%, -50%) scale(var(--sch, 1));
  transition: opacity 0.3s var(--ease-out);
  will-change: left, top;
}
.erv-reiziger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.erv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 40px;
  background: linear-gradient(
    180deg,
    var(--seashell) 0%,
    var(--seashell) 72%,
    var(--white) 100%
  );
  overflow: hidden;
}
.erv-decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.erv-bol {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: 0 10px 26px #000e301f;
  animation: erv-zweef var(--d, 9s) ease-in-out infinite alternate;
}
.erv-bol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes erv-zweef {
  0% {
    transform: translate(-50%, calc(-50% - 7px));
  }
  to {
    transform: translate(-50%, calc(-50% + 7px));
  }
}
.erv-hero__intro {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.erv-hero__sub {
  max-width: 720px;
}
.erv-statement {
  position: relative;
  background: var(--white);
  padding: 48vh 0 52vh;
}
.erv-statement__binnen {
  display: flex;
  align-items: center;
  justify-content: center;
}
.erv-statement__tekst {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1.62;
  letter-spacing: 0.3px;
  color: var(--dark);
}
.erv-statement__tekst .erv-woord {
  color: #000e3029;
  transition: color 0.3s var(--ease-out);
}
.erv-statement__tekst .erv-woord.is-aan {
  color: var(--dark);
}
.erv-cases {
  background: var(--white);
  padding: 120px 0;
}
.erv-cases__grid {
  display: flex;
  align-items: center;
  gap: 40px;
}
.erv-rail {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.erv-rail__slot {
  width: 84px;
  height: 84px;
  padding: 8px;
  display: grid;
  place-items: center;
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.25s var(--ease-out);
}
.erv-rail__slot.is-actief {
  border-color: var(--folly);
}
.erv-rail__slot img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.erv-rail__slot.is-vol img {
  opacity: 1;
}
.erv-podium {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
  height: 560px;
}
.erv-quote-kaart {
  flex: 1 1 0;
  min-width: 0;
  background: var(--seashell);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.erv-quote-kaart__tekst {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.24px;
  color: var(--dark);
  transition: opacity 0.25s var(--ease-out);
}
.erv-quote-kaart__tekst.is-wissel {
  opacity: 0;
}
.erv-quote-kaart__rij {
  display: flex;
  align-items: center;
  gap: 12px;
}
.erv-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px 8px 8px;
  background: var(--dark);
  border: 1px solid var(--dark-16);
  border-radius: 1000px;
}
.erv-pill__foto {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.erv-pill__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.erv-pill__tekst {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}
.erv-pill__tekst strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}
.erv-pill__tekst span {
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
}
.erv-los {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}
.erv-los:hover {
  transform: scale(1.06);
}
.erv-los img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.erv-foto-kaart {
  position: relative;
  width: 400px;
  flex-shrink: 0;
  border-radius: 32px;
  overflow: hidden;
  background: var(--seashell);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.erv-foto-kaart__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.erv-foto-kaart__info {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.erv-foto-kaart__naam {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.24px;
  color: var(--dark);
}
.erv-foto-kaart__rol {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  color: var(--dark);
}
.erv-foto-kaart__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.erv-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  background: var(--seashell);
  border-radius: 1000px;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  color: var(--dark);
}
.erv-tag__vlag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.erv-tag .fi {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
}
@media (max-width: 1000px) {
  .erv-bol {
    width: calc(var(--s) * 0.78);
    height: calc(var(--s) * 0.78);
  }
  .erv-bol--web {
    display: none;
  }
  .erv-decor .erv-bol:nth-of-type(1) {
    --x: 14% !important;
    --y: 9% !important;
  }
  .erv-decor .erv-bol:nth-of-type(3) {
    --x: -1% !important;
    --y: 30% !important;
  }
  .erv-decor .erv-bol:nth-of-type(5) {
    --x: -2% !important;
    --y: 56% !important;
  }
  .erv-decor .erv-bol:nth-of-type(7) {
    --x: 0% !important;
    --y: 80% !important;
  }
  .erv-decor .erv-bol:nth-of-type(9) {
    --x: 30% !important;
    --y: 93% !important;
  }
  .erv-decor .erv-bol:nth-of-type(10) {
    --x: 58% !important;
    --y: 6% !important;
  }
  .erv-decor .erv-bol:nth-of-type(11) {
    --x: 87% !important;
    --y: 11% !important;
  }
  .erv-decor .erv-bol:nth-of-type(13) {
    --x: 101% !important;
    --y: 34% !important;
  }
  .erv-decor .erv-bol:nth-of-type(15) {
    --x: 100% !important;
    --y: 60% !important;
  }
  .erv-decor .erv-bol:nth-of-type(17) {
    --x: 78% !important;
    --y: 90% !important;
  }
  .erv-reiziger {
    width: 64px;
    height: 64px;
  }
  .erv-cases__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .erv-rail {
    flex-direction: row;
    justify-content: flex-start;
  }
  .erv-podium {
    flex-direction: column;
    height: auto;
  }
  .erv-quote-kaart {
    gap: 40px;
  }
  .erv-foto-kaart {
    width: 100%;
    min-height: 460px;
  }
}
@media (max-width: 700px) {
  .erv-hero {
    min-height: 100vh;
    padding: 120px 0 60px;
  }
  .erv-statement {
    padding: 22vh 0 24vh;
  }
  .erv-cases {
    padding: 80px 0;
  }
  .erv-rail {
    gap: 8px;
  }
  .erv-rail__slot {
    width: 64px;
    height: 64px;
    padding: 5px;
  }
  .erv-rail__slot img {
    width: 48px;
    height: 48px;
  }
  .erv-quote-kaart {
    padding: 28px 24px;
  }
  .erv-quote-kaart__tekst {
    font-size: 19px;
  }
  .erv-quote-kaart__rij {
    flex-wrap: wrap;
  }
  .erv-pill {
    gap: 12px;
    padding: 6px 18px 6px 6px;
    max-width: 100%;
  }
  .erv-pill__foto {
    width: 48px;
    height: 48px;
  }
  .erv-pill__tekst {
    white-space: normal;
  }
  .erv-pill__tekst strong {
    font-size: 16px;
  }
  .erv-pill__tekst span {
    font-size: 14px;
  }
  .erv-los {
    width: 48px;
    height: 48px;
  }
  .erv-foto-kaart {
    min-height: 400px;
    padding: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .erv-bol {
    animation: none;
  }
  .erv-reis {
    display: none;
  }
  .erv-rail__slot img {
    opacity: 1;
  }
  .erv-statement {
    padding: 140px 0;
  }
  .erv-statement__tekst .erv-woord {
    color: var(--dark);
  }
}
