.aura-home-hero {
  position: relative;
  display: grid;
  min-height: 94.3vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 0;
background: #ffffff;
background: linear-gradient(48deg, rgba(86, 65, 49, 0.3) 0%, rgba(223, 204, 179, 0.3) 29%, rgba(255, 245, 230, 0.8) 73%, rgba(255, 255, 255, 1) 95%);
  color: #ffffff;
}

.aura-home-hero__media,
.aura-home-hero__image,
.aura-home-hero__overlay {
  position: absolute;
  inset: 0;
}

.aura-home-hero__media {
  z-index: -2;
  display: block;
}

.aura-home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
      border-radius: 0;
}

.aura-home-hero__overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(24, 10, 12, 0.3) 30%, rgba(24, 10, 12, 0) 42%);
    pointer-events: none;
}

.aura-home-hero__inner {
  display: flex;
  align-items: center;
  width: min(100% - clamp(32px, 5vw, 80px), 1440px);
  min-height: inherit;
  margin: 0 auto;
  padding: calc(var(--aura-header-height, 72px) + 28px) 0 64px;
}

.aura-home-hero__content {
  width: min(100%, 650px);
  color: #ffffff;
}

.aura-home-hero__reviews,
.aura-home-hero__kicker,
.aura-home-hero__title,
.aura-home-hero__text {
  color: #ffffff;
}

.aura-home-hero__reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-family: var(--aura-font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.aura-home-hero__stars {
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.aura-home-hero__kicker {
  max-width: 540px;
  margin: 0 0 14px;
  font-family: var(--aura-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.aura-home-hero__title {
  max-width: 620px;
  margin: 0;
  font-family: var(--aura-font-editorial);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.aura-home-hero__text {
  max-width: 580px;
  margin: 22px 0 0;
  font-family: var(--aura-font-body);
  font-size: clamp(13px, 0.92vw, 15px);
  font-weight: 400;
  line-height: 1.65;
}

.aura-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.aura-home-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--aura-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 240ms ease;
}

.aura-home-hero__button:hover,
.aura-home-hero__button:focus-visible {
  transform: translate3d(0, -1px, 0);
}

.aura-home-hero__button--primary {
  border-color: #4b1c22;
  background: #4b1c22;
  color: #ffffff;
}

.aura-home-hero__button--primary:hover,
.aura-home-hero__button--primary:focus-visible {
  border-color: #5a232a;
  background: #5a232a;
  color: #ffffff;
}

.aura-home-hero__button--secondary {
  border-color: rgba(255, 255, 255, 0.86);
  background: transparent;
  color: #ffffff;
}

.aura-home-hero__button--secondary:hover,
.aura-home-hero__button--secondary:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.aura-home-hero__assurances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 550px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.aura-home-hero__assurance {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #ffffff;
}

.aura-home-hero__assurance-icon {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.aura-home-hero__assurance-text {
  color: #ffffff;
  font-family: var(--aura-font-body);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 900px) {
.aura-home-hero__overlay {
    z-index: -1;
    background: linear-gradient(180deg, rgba(24, 10, 12, 0.3) 40%, rgb(24 10 12 / 30%) 60%, rgb(24 10 12 / 0%)  76%);
    pointer-events: none;
}
  .aura-home-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .aura-home-hero__inner {
    justify-content: center;
    align-items: flex-start;
    width: min(100% - 32px, 560px);
           padding: calc(var(--aura-header-height, 58px) + 38px) 0 44px;
    text-align: center;
  }

  .aura-home-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .aura-home-hero__reviews {
    justify-content: center;
    margin-bottom: 16px;
    font-size: 11px;
  }

  .aura-home-hero__kicker {
    max-width: 280px;
    margin-bottom: 12px;
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }

  .aura-home-hero__title {
    max-width: 420px;
    font-size: clamp(1.95rem, 8.4vw, 2.65rem);
    line-height: 1;
  }

  .aura-home-hero__text {
    max-width: 410px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .aura-home-hero__actions {
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
  }

  .aura-home-hero__button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 10.5px;
    letter-spacing: 0.07em;
  }

  .aura-home-hero__assurances {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
    margin-top: 24px;
  }

  .aura-home-hero__assurance {
    justify-content: center;
  }

  .aura-home-hero__assurance-icon {
    width: 20px;
    height: 20px;
  }

  .aura-home-hero__assurance-text {
    font-size: 11px;
  }
	
	
	.aura-home-hero__button--secondary {
    border-color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
		        transition: all .3s ease;
		  will-change: backdrop-filter;
}
	.aura-home-hero__assurances {

    display: none;

}
	.aura-home-hero__text {
    font-size: 13px;

}
}


@media (max-width: 420px) {
	
	
  .aura-home-hero__inner {
    width: min(100% - 24px, 560px);
  }

  .aura-home-hero__reviews {
    flex-direction: column;
    gap: 5px;
  }

  .aura-home-hero__title {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .aura-home-hero__actions {
    width: 100%;
  }

  .aura-home-hero__button {
    width: min(100%, 290px);
  }
}
