:root {
  color-scheme: dark;
  --bg: #0d1114;
  --ink: #f3f7f8;
  --muted: rgba(243, 247, 248, 0.68);
  --faint: rgba(243, 247, 248, 0.42);
  --line: rgba(243, 247, 248, 0.18);
  --panel: rgba(13, 17, 20, 0.58);
  --accent: #c7e7f4;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 70% 20%, rgba(199, 231, 244, 0.12), transparent 28rem),
    var(--bg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(1rem, 2.5vw, 2rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/assets/winter-gear-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 13, 0.94) 0%, rgba(8, 11, 13, 0.78) 42%, rgba(8, 11, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 11, 13, 0.85) 0%, transparent 36%);
}

.topbar,
.hero-copy,
.footer-note {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.status-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(14px);
}

.hero-copy {
  align-self: center;
  width: min(44rem, 100%);
  min-width: 0;
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: min(38rem, 100%);
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.notice-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(38rem, 100%);
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.notice-panel > div {
  padding: 1rem;
}

.notice-panel > div + div {
  border-left: 1px solid var(--line);
}

.notice-label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.notice-panel strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.3;
}

.footer-note {
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--faint);
  font-size: 0.86rem;
  font-weight: 650;
}

@media (max-width: 760px) {
  .hero {
    padding: 1rem;
  }

  .hero-media {
    background-position: 62% center;
  }

  .scrim {
    background:
      linear-gradient(90deg, rgba(8, 11, 13, 0.96) 0%, rgba(8, 11, 13, 0.82) 62%, rgba(8, 11, 13, 0.34) 100%),
      linear-gradient(0deg, rgba(8, 11, 13, 0.9) 0%, transparent 42%);
  }

  .topbar,
  .footer-note {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }

  .lede {
    max-width: 21rem;
  }

  .notice-panel {
    grid-template-columns: 1fr;
  }

  .notice-panel > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
