:root {
  --bg: #f3eee7;
  --surface: #f7f2ec;
  --text: #1f1a17;
  --muted: #6f665f;
  --line: rgba(31, 26, 23, 0.16);
  --button-dark: #201a17;
  --button-dark-hover: #161210;
  --max-width: 1440px;
  --hero-min-height: 880px;
  --radius: 999px;
  --transition: 180ms ease;
}
.hero .banners-pics{
	position: relative;
	width: 100%;
	height: auto;
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero__inner {
  /* width: min(100%, var(--max-width)); */
  min-height: var(--hero-min-height);
  margin: 0 auto;
  /* padding: 72px 64px; */
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  column-gap: clamp(56px, 7vw, 120px);
  position: absolute;
  z-index: 9;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 72px 0;
}

.hero__content {
  max-width: 620px;
  align-self: center;
  z-index: 2;
}

.hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  font-size:clamp(17px, 3.39vw, 65px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--text);
  text-wrap: balance;
}

.hero__text {
  max-width: 500px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(31, 26, 23, 0.84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.button:focus-visible {
  outline: 2px solid rgba(31, 26, 23, 0.45);
  outline-offset: 3px;
}

.button--primary {
  background: var(--button-dark);
  color: #ffffff;
  border-color: var(--button-dark);
}

.button--primary:hover {
  background: var(--button-dark-hover); color: #ffffff;
  border-color: var(--button-dark-hover);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.42);
  color: var(--text);
  border-color: var(--line);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.72);color: var(--text);
}

.hero__meta {
  max-width: 620px;
  margin: 22px 0 0;
  font-size:14px;
  line-height: 1.7;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__visual-stage {
  position: relative;
  width: min(100%, 680px);
  height: clamp(560px, 52vw, 760px);
  margin-left: auto;
}

.hero__product {
  position: absolute;
  user-select: none;
  -webkit-user-drag: none;
  object-fit: contain;
  transform-origin: center center;
}

.hero__product--back {
  top: 3%;
  right: -1%;
  width: clamp(360px, 39vw, 620px);
  z-index: 1;
}

.hero__product--front {
  left: 4%;
  bottom: 4%;
  width: clamp(250px, 26vw, 430px);
  z-index: 2;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1199px) {
  :root {
    --hero-min-height: 760px;
  }

  .hero__inner {
    padding: 60px 48px;
    column-gap: clamp(40px, 5vw, 72px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  }

  .hero__content {
    max-width: 560px;
  }

  .hero__text {
    max-width: 460px;
  }

  .hero__visual {
    min-height: 600px;
  }

  .hero__visual-stage {
    height: clamp(500px, 48vw, 650px);
  }

  .hero__product--back {
    width: clamp(330px, 37vw, 540px);
    top: 4%;
    right: 0;
  }

  .hero__product--front {
    width: clamp(220px, 23vw, 370px);
    left: 6%;
    bottom: 6%;
  }
}

@media (max-width: 991px) {
  :root {
    --hero-min-height: auto;
  }

  .hero__inner {
    padding: 56px 32px 64px;
    grid-template-columns: 1fr;
    row-gap: 34px;
    align-items: start;
  }

  .hero__content {
    max-width: 100%;
  }



  .hero__text {
    max-width: 330px;
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 30px;
  }

  .hero__meta {
    max-width: 300px;
  }

  .hero__visual {
    min-height: 500px;
    justify-content: center;
  }

  .hero__visual-stage {
    width: min(100%, 680px);
    height: 500px;
    margin: 0 auto;
  }

  .hero__product--back {
    top: 2%;
    right: 7%;
    width: min(62vw, 470px);
  }

  .hero__product--front {
    left: 8%;
    bottom: 2%;
    width: min(40vw, 320px);
  }

	.button {
	    min-height: 40px;
	    padding: 0 15px;
	    font-size: 12px;
	}

	.hero__body,.hero__supporting{
    font-size: 14px;
    max-width: 350px;
}
}

@media (max-width: 767px) {
  .hero__inner {
    padding: 42px 20px 52px;
    row-gap: 26px;
  }

  .hero__title {
    line-height: 0.96;
  }

  .hero__text {
    max-width: 34rem;
    margin-top: 20px;
    line-height: 1.75;
  }

  .hero__actions {
    /* flex-direction: column; */
    /* align-items: flex-start; */
    /* gap: 12px; */
    margin-top: 10px;
  }

  .button {
    min-height: 30px;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero__meta {
    margin-top: 18px;
    line-height: 1.65;
  }

  .hero__visual {
    min-height: 360px;
  }

  .hero__visual-stage {
    width: min(100%, 420px);
    height: 360px;
  }

  .hero__product--back {
    top: 0;
    right: 2%;
    width: min(72vw, 300px);
  }

  .hero__product--front {
    left: 1%;
    bottom: 1%;
    width: min(46vw, 190px);
  }
}

@media (max-width: 576px) {
  .hero__inner {
    padding-left: 16px;
    padding-right: 16px;
    padding: 20px 15px 0;
  }

	.hero__body, .hero__supporting {
        font-size: 10px;
        max-width: 225px;
    }
	
	.hero__text,.hero__meta {
        margin-top: 10px;
        line-height: 1.2;
        max-width: 201px;
        font-size: 10px;
    }

	


  .hero__visual {
    min-height: 320px;
  }

  .hero__visual-stage {
    height: 320px;
  }

  .hero__product--back {
    width: min(75vw, 270px);
    right: 1%;
  }

  .hero__product--front {
    width: min(47vw, 170px);
    left: 0;
    bottom: 2%;
  }
.button {
        min-height: 20px;
        padding: 0 10px;
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
