/* Home uses the same header glass as the rest of the site. */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  min-height: 100svh;
  padding-block: 96px 48px;
  overflow: hidden;
  isolation: isolate;
  background: #d5aa80;
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero__media::after {
  content: "";
  background: linear-gradient(90deg, rgba(244, 234, 220, 0.96) 0%, rgba(244, 234, 220, 0.78) 34%, rgba(244, 234, 220, 0.05) 62%);
}

.hero__content {
  width: min(100% - 8vw, 1440px);
  margin-inline: auto;
  padding: 0;
}

.hero__eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--burgundy-deep);
  font-size: clamp(54px, 6.8vw, 108px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero__title em {
  color: var(--gold);
  font-style: normal;
  font-weight: 300;
}

.hero__intro {
  max-width: 510px;
  margin: 30px 0 0;
  color: rgba(50, 16, 24, 0.72);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.8;
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__proof {
  width: min(560px, 100%);
  margin-top: clamp(58px, 9vh, 100px);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero__proof p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero__proof strong {
  color: var(--burgundy);
  font-size: 21px;
  font-weight: 400;
}

.hero__proof span {
  color: rgba(50, 16, 24, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__edition {
  position: absolute;
  inset-inline-end: 4vw;
  bottom: 30px;
  margin: 0;
  color: rgba(244, 234, 220, 0.75);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}


@media (max-width: 980px) {
  .hero {
    display: block;
    padding-block: 0;
  }

  .hero__media::after {
    background: linear-gradient(90deg, rgba(244, 234, 220, 0.95) 0%, rgba(244, 234, 220, 0.76) 48%, rgba(244, 234, 220, 0.08) 75%);
  }

  .hero__content {
    padding: 12vh 0 52px;
  }
}

@media (max-width: 680px) {
  .hero {
    display: block;
    min-height: 100svh;
    padding-block: 0;
  }

  .hero__media img {
    object-position: 69% center;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(244, 234, 220, 0.7) 0%, rgba(244, 234, 220, 0.93) 45%, rgba(244, 234, 220, 0.98) 100%);
  }

  .hero__content {
    width: calc(100% - 40px);
    padding-top: 36vh;
    padding-bottom: 28px;
  }

  .hero__eyebrow {
    margin-bottom: 16px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .hero__title {
    font-size: clamp(45px, 13vw, 64px);
  }

  .hero__intro {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero__actions {
    margin-top: 24px;
    gap: 20px;
  }

  .button {
    min-height: 48px;
    padding-inline: 17px;
    font-size: 9px;
  }

  .text-link {
    font-size: 9px;
  }

  .hero__proof {
    margin-top: 34px;
    padding-top: 18px;
    gap: 12px;
  }

  .hero__proof strong {
    font-size: 18px;
  }

  .hero__proof span {
    font-size: 7px;
    line-height: 1.35;
  }

  .hero__edition {
    display: none;
  }
}
