.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-espresso);
}

.hero__media,
.hero__media img,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__veil {
  pointer-events: none;
}

.hero__veil--left {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.16) 28%, transparent 54%),
    radial-gradient(circle at 36% 35%, transparent 0 16rem, rgba(0, 0, 0, 0.15) 32rem, transparent 54rem);
}

.hero__veil--bottom {
  z-index: -1;
  background: linear-gradient(0deg, rgba(10, 5, 4, 0.78) 0%, rgba(10, 5, 4, 0.2) 26%, transparent 58%);
}

.hero__feature-bar {
  position: absolute;
  top: clamp(5.4rem, 9vw, 4.5rem);
  right: clamp(1.1rem, 4vw, 3.95rem);
  z-index: 5;
  display: none;
  align-items: flex-start;
  color: var(--color-champagne);
}

.hero-feature {
  position: relative;
  display: grid;
  min-width: clamp(5.6rem, 7vw, 7.45rem);
  gap: 0.68rem;
  justify-items: center;
  padding-inline: clamp(0.75rem, 1.65vw, 1.55rem);
  text-align: center;
}

.hero-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.18rem;
  right: 0;
  width: 1px;
  height: 4.8rem;
  background: var(--color-line);
}

.hero-feature svg {
  width: clamp(1.8rem, 2.35vw, 2.55rem);
  height: clamp(1.8rem, 2.35vw, 2.55rem);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.hero-feature span {
  color: var(--color-soft-cream);
  font-size: clamp(0.63rem, 0.78vw, 0.82rem);
  line-height: 1.52;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.hero__content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding: 7rem var(--page-gutter) 2.1rem;
}

.hero__title {
  align-self: center;
  min-width: 0;
  max-width: none;
  margin-top: clamp(4rem, 8vw, 7rem);
  color: rgba(248, 239, 228, 0.9);
  font-family: var(--font-display);
  font-size: clamp(5.35rem, 17vw, 18rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.66;
  text-transform: uppercase;
  text-shadow: 0 0.5rem 2.1rem rgba(0, 0, 0, 0.34);
}

.hero__title span {
  display: block;
  white-space: nowrap;
}

.hero__title-mobile {
  display: none !important;
}

.hero__lower {
  align-self: end;
  display: grid;
  gap: 1.3rem;
  min-width: 0;
}

.hero__tagline {
  color: rgba(224, 187, 148, 0.95);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.45vw, 2.65rem);
  line-height: 1.1;
}

.hero__tagline::after {
  content: "";
  display: block;
  width: min(20rem, 42vw);
  height: 1px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--color-champagne), transparent);
}

.hero__cta {
  justify-self: start;
  width: min(22rem, 100%);
  min-width: 0;
  border: 1px solid rgba(201, 155, 107, 0.78);
  background: rgba(105, 25, 17, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 225, 185, 0.1), 0 1rem 2rem rgba(0, 0, 0, 0.22);
  color: var(--color-champagne);
  padding: 1.28rem 1.55rem;
  font-size: clamp(0.68rem, 0.82vw, 0.85rem);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.hero__cta:hover {
  transform: translateY(-2px);
  border-color: var(--color-cream);
  background: rgba(128, 31, 22, 0.95);
  color: var(--color-cream);
}

@media (min-width: 1100px) {
  .hero__feature-bar {
    display: flex;
  }
}

@media (min-width: 900px) {
  .hero__content {
    padding: 6rem clamp(2rem, 5.2vw, 5.45rem) 3.55rem calc(var(--rail-width) + clamp(1.95rem, 2vw, 2.25rem));
  }

  .hero__title {
    max-width: none;
    margin-top: clamp(6.2rem, 13vh, 8.6rem);
    font-size: clamp(9.75rem, 15.5vw, 16.2rem);
  }

}

@media (min-width: 1200px) {
  .hero__lower {
    grid-template-columns: minmax(24rem, 1fr) auto;
    align-items: end;
  }

  .hero__cta {
    justify-self: end;
    margin-right: clamp(0rem, 2.3vw, 2.35rem);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .hero__title {
    font-size: clamp(6rem, 13.6vw, 8.7rem);
  }
}
