:root {
  color-scheme: dark;
  --ink: #fff8ec;
  --muted: #d9c9b1;
  --forest: #0d2118;
  --forest-deep: #07110d;
  --gold: #d6a75f;
  --burgundy: #6e2230;
  --line: rgba(255, 248, 236, 0.2);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--forest-deep);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--forest-deep);
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  overflow: hidden;
  background:
    var(--forest-deep) url("/assets/coat-hero.png") center center / 100% 100% no-repeat;
  isolation: isolate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 13, 0.97) 0%, rgba(7, 17, 13, 0.78) 34%, rgba(7, 17, 13, 0.24) 58%, rgba(7, 17, 13, 0.04) 82%),
    linear-gradient(0deg, rgba(7, 17, 13, 0.72) 0%, rgba(7, 17, 13, 0) 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 1180px);
  padding: 72px clamp(20px, 6vw, 88px) 96px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid rgba(214, 167, 95, 0.38);
  border-radius: 999px;
  color: #f2d7a5;
  background: rgba(13, 33, 24, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8.5rem;
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.45;
}

.signal {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(110, 34, 48, 0.28), rgba(13, 33, 24, 0)),
    var(--forest);
}

.signal__label,
.signal__copy {
  margin: 0;
}

.signal__label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signal__copy {
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.store-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: 8px;
  padding: 0 16px;
  color: rgba(255, 248, 236, 0.68);
  background: rgba(7, 17, 13, 0.38);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  color: rgba(255, 248, 236, 0.68);
  background: #070d0a;
  font-size: 0.92rem;
}

@media (max-width: 780px) {
  .hero {
    min-height: 84vh;
    background-position: 64% center;
    background-size: cover;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 13, 0.95), rgba(7, 17, 13, 0.68)),
      linear-gradient(0deg, rgba(7, 17, 13, 0.78) 0%, rgba(7, 17, 13, 0) 55%);
  }

  .hero__content {
    padding-top: 48px;
    padding-bottom: 68px;
  }

  h1 {
    font-size: 5.4rem;
  }

  .signal {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-links {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 4.3rem;
  }

  .lede {
    font-size: 1.14rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
