.sh-hero {
  --sh-top-bg: #FEEBDB;
  --sh-bottom-bg: #FCF7F2;
  --sh-btn-bg: #e3ab7a;
  --sh-btn-bg-hover: #d99a63;
  --sh-text: #171717;

  position: relative;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  max-width: 100vw;
}

.sh-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 67px;
  padding-right: 20px;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
}

.sh-hero__top {
  background-color: var(--sh-top-bg);
  padding: 90px 0 40px;
}

.sh-hero__bottom {
  background-color: var(--sh-bottom-bg);
  padding: 70px 0 56px;
}

.sh-hero__text-col {
  padding-right: 32px;
}

/* Lege kolom: reserveert ruimte zodat tekst niet onder de afbeelding valt */
.sh-hero__image-col {
  min-height: 1px;
}

.sh-hero__heading {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--sh-text);
}

.sh-hero__description {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--sh-text);
  margin-bottom: 60px;
}

.sh-hero__description p {
  margin: 0 0 12px;
}

.sh-hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.sh-hero__btn {
  display: inline-block;
  text-decoration: none;
}

.sh-hero__btn--primary {
  background-color: var(--sh-btn-bg);
  color: var(--sh-text);
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  width: fit-content;
  flex: 0 0 auto;
}

.sh-hero__btn--primary:hover {
  background-color: var(--sh-btn-bg-hover);
}

.sh-hero__btn--secondary {
  color: var(--sh-text);
  text-decoration: underline;
  font-weight: 500;
}

.sh-hero__reviews {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sh-hero__stars {
  color: var(--sh-btn-bg);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.sh-hero__reviews-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--sh-text);
}

/* Afbeelding: absoluut gepositioneerd, overlapt beide banden, diagonale snede */
.sh-hero__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}

.sh-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobiel: alles gestapeld, afbeelding onderaan in normale flow */
@media (max-width: 900px) {@media (max-width: 900px) {
  .sh-hero {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
  }
  .sh-hero__image {
    order: -1;
  }
  .sh-hero__container {
    grid-template-columns: 1fr;
  }
  .sh-hero__image-col {
    display: none;
  }
  .sh-hero__text-col {
    padding-right: 0;
  }
  .sh-hero__top {
    padding: 60px 0 48px;
  }
  .sh-hero__bottom {
    padding: 48px 0 60px;
  }
  .sh-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .sh-hero__image {
    position: static;
    width: 100%;
    height: 280px;
    clip-path: none;
}