/* home page rules — see public/css/shared.css for tokens and primitives */

/* Hero -------------------------------------------------------------------- */

.home-hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
}

.home-heroMedia {
  width: 100%;
  height: 100%;
}

.home-heroScrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, oklch(0.1 0.004 70 / 0.85) 0%, transparent 45%);
}

.home-heroBody {
  position: absolute;
  right: 32px;
  bottom: 48px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.home-heroTitle {
  max-width: 820px;
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: pretty;
}

.home-heroBody .btn--solid {
  margin-top: 6px;
}

/* Brand band -------------------------------------------------------------- */

.home-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 110px var(--gutter);
  text-align: center;
}

.home-brandLine {
  max-width: 480px;
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: var(--ls-eyebrow);
  line-height: 1.9;
  text-transform: uppercase;
}

.home-brand .btn--outline {
  margin-top: 8px;
}

/* New arrivals ------------------------------------------------------------ */

.home-arrivals {
  padding: 0 var(--gutter) 100px;
}

.home-arrivalsHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.home-arrivalsTitle {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  text-transform: uppercase;
}

.home-shopAll {
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.home-arrivalsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

/* Lookbook teaser --------------------------------------------------------- */

.home-teaser {
  position: relative;
  height: 70vh;
  min-height: 440px;
}

.home-teaserMedia {
  width: 100%;
  height: 100%;
}

.home-teaserScrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, oklch(0.1 0.004 70 / 0.9) 100%);
}

.home-teaserBody {
  position: absolute;
  bottom: 40px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.home-teaserTitle {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--bone);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
}

/* Monogram ---------------------------------------------------------------- */

.home-monogram {
  display: flex;
  justify-content: center;
  padding: 70px var(--gutter);
}

.home-monogram img {
  width: 100px;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .home-heroBody,
  .home-teaserBody {
    right: 18px;
    left: 18px;
  }

  .home-brand {
    padding: 72px var(--gutter);
  }
}
