@charset "UTF-8";
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.hero p {
  margin: 0 0 22px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(110, 19, 74, 0.75);
}

/* fale/organic background */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: -12%;
  top: -35%;
  width: 70%;
  height: 85%;
  background: radial-gradient(60% 60% at 35% 35%, rgba(216, 155, 174, 0.7), rgba(216, 155, 174, 0.2) 60%, transparent 72%), radial-gradient(70% 70% at 75% 15%, rgba(216, 155, 174, 0.55), transparent 65%), radial-gradient(60% 60% at 15% 85%, rgba(216, 155, 174, 0.45), transparent 70%);
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  left: -5%;
  top: 42%;
  width: 80%;
  height: 70%;
  transform: rotate(6deg);
  opacity: 0.75;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.hero-left {
  padding: 38px 10px 22px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-h1 {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: 0.2px;
  background: linear-gradient(90deg, #b39300 0%, #ffb800 45%, #775000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-by {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(110, 19, 74, 0.55);
  text-transform: uppercase;
}

.social {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 22px;
}

.sbtn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(110, 19, 74, 0.18);
  background: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(110, 19, 74, 0.7);
  font-size: 13px;
}
.sbtn svg {
  height: 20px;
}
.sbtn svg path {
  fill: rgba(110, 19, 74, 0.78);
}

.sbtn:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-right {
  position: relative;
  min-height: 592px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* rozciąga się poza hero-right aż do prawej krawędzi viewportu;
     .hero { overflow:hidden } przytnie naturalnie do ekranu */
  width: calc(100% + 50vw);
  object-fit: cover;
  object-position: left center;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-left {
    min-height: auto;
    padding: 26px 8px 18px;
  }
  .hero-right {
    min-height: 380px;
  }
  .hero-h1 {
    font-size: 24px;
  }
}

/*# sourceMappingURL=hero.css.map */
