/* Hero vignette: karanlık kenarlar, ortada odak */
.hero-imagecontainer {
  background-color: #000 !important;
  position: relative;
}

.hero-vignette {
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  background: radial-gradient(
    ellipse 40% 45% at 50% 50%,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.55) 58%,
    rgba(0, 0, 0, 0.92) 100%
  );
  position: absolute;
  inset: 0;
}

.hero-imagecontainer .blurelipse {
  z-index: 1;
  opacity: 1;
  filter: blur(9rem);
  background-color: #ffffff4d;
}

.hero-imagecontainer .imagehero {
  z-index: 2;
  mix-blend-mode: normal;
  object-fit: unset;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 3px;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-grid-cell {
  overflow: hidden;
  height: 100%;
  min-height: 0;
}

.hero-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  mix-blend-mode: luminosity;
}

.hero-site {
  --hero-vh: 1vh;
}

.hero-site .herosite {
  min-height: calc(var(--hero-vh, 1vh) * 100);
}

.hero-site .hero-imagecontainer {
  min-height: 100%;
}

.hero-site .herotitle {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: 1;
  display: block;
  overflow: visible;
  opacity: 1 !important;
  pointer-events: none;
  transform: none !important;
}

.hero-site .text-hero-2 {
  position: absolute;
  left: 50%;
  top: 88vh;
  z-index: 21;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 4.5vw;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.12rem;
  color: #fff;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  text-transform: lowercase;
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center center;
  will-change: transform, font-size, top;
  mix-blend-mode: normal;
}

/* Mobil: tek görsel (ortadaki portre), tam ekran yükseklik */
@media screen and (max-width: 767px) {
  .hero-site {
    min-height: calc(var(--hero-vh, 1vh) * 350);
  }

  .hero-site .generalcontainer,
  .hero-site .herosite,
  .hero-site .hero-imagecontainer {
    height: calc(var(--hero-vh, 1vh) * 100);
    min-height: calc(var(--hero-vh, 1vh) * 100);
    max-height: calc(var(--hero-vh, 1vh) * 100);
  }

  .hero-imagecontainer .imagehero.hero-image-grid {
    display: block;
    gap: 0;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-imagecontainer .hero-grid-cell {
    display: none;
  }

  .hero-imagecontainer .hero-grid-cell--mobile {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .hero-imagecontainer .hero-grid-cell--mobile .hero-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: luminosity;
  }

  .hero-vignette {
    background: radial-gradient(
      ellipse 55% 55% at 50% 42%,
      transparent 0%,
      rgba(0, 0, 0, 0.18) 28%,
      rgba(0, 0, 0, 0.62) 58%,
      rgba(0, 0, 0, 0.96) 100%
    );
  }

  .hero-site .text-hero-2 {
    top: 86%;
    font-size: 11vw;
    letter-spacing: -0.06rem;
    will-change: transform;
  }

  .hero-imagecontainer .blurelipse {
    display: none;
  }

  .hero-imagecontainer .hero-grid-cell--mobile .hero-grid-img {
    mix-blend-mode: normal;
  }
}
