:root {
  color-scheme: dark;
  --ink: #07090f;
  --paper: #f5f3ed;
  --muted: #a9acb7;
  --line: rgba(255, 255, 255, 0.15);
  --cyan: #50e3ff;
  --pink: #ff477e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 88% 12%, rgba(80, 227, 255, 0.1), transparent 28rem),
    radial-gradient(circle at 8% 85%, rgba(255, 71, 126, 0.08), transparent 28rem),
    var(--ink);
  color: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
}

.site-header {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(80, 227, 255, 0.12);
}

.header-link {
  border-bottom: 1px solid var(--pink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-link.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.header-link:hover,
.header-link:focus-visible {
  color: var(--pink);
}

.logo-banner {
  position: relative;
  margin: 42px -3% 0;
}

.logo-banner img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 48px rgba(0, 0, 0, 0.48));
  mask-image: radial-gradient(ellipse 76% 82% at center, #000 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 76% 82% at center, #000 70%, transparent 100%);
}

.hero {
  display: grid;
  min-height: 480px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  padding: 96px 0;
}

.hero-copy {
  max-width: 940px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(4rem, 8.5vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
}

h1 span {
  display: inline-block;
  color: transparent;
  font-size: 0.53em;
  letter-spacing: -0.045em;
  line-height: 1.35;
  -webkit-text-stroke: 1.5px var(--paper);
}

.intro {
  max-width: 640px;
  margin-bottom: 34px;
  color: #d4d6dd;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--cyan);
  background: var(--cyan);
  transform: translateY(-2px) rotate(-0.5deg);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--ink);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(255, 71, 126, 0.12);
}

.note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note h2 {
  max-width: 500px;
  margin-bottom: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.note > p {
  max-width: 560px;
  margin: 2.3rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

footer {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #777b88;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

footer a {
  text-decoration-color: var(--pink);
  text-underline-offset: 4px;
}

.story-hero {
  max-width: 940px;
  padding: 112px 0 92px;
}

.story-hero h1 {
  margin-bottom: 44px;
}

.story-hero h1 span {
  font-size: 1em;
}

.story-hero > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-hero .story-lede {
  color: var(--paper);
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  font-weight: 600;
  line-height: 1.42;
}

.story-sections {
  border-top: 1px solid var(--line);
}

.story-section {
  display: grid;
  grid-template-columns: 110px minmax(0, 760px);
  gap: 32px;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.section-number {
  margin: 8px 0 0;
  color: var(--pink);
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
}

.story-section h2,
.archive h2 {
  margin-bottom: 28px;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.story-section p {
  color: #c8cad2;
  font-size: 1.06rem;
}

.story-section .story-closing {
  color: var(--cyan);
  font-weight: 700;
}

.archive {
  padding: 112px 0 92px;
}

.archive-heading {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px 56px;
  align-items: end;
  margin-bottom: 56px;
}

.archive-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.archive-heading h2 {
  margin-bottom: 0;
}

.archive-heading > p:last-child {
  color: var(--muted);
}

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
  align-items: start;
}

.flyer-grid figure {
  margin: 0;
}

.flyer-grid figure:nth-child(3n + 2) {
  margin-top: 54px;
}

.flyer-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  filter: saturate(0.92) contrast(1.03);
}

.flyer-grid figcaption {
  padding-top: 12px;
  color: #8c909d;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: end;
  padding: 112px 0 96px;
}

.store-hero h1 {
  margin-bottom: 0;
}

.store-lede {
  margin: 0 0 12px;
  color: #d4d6dd;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.drop {
  padding: 76px 0 112px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.drop-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.drop-heading h2,
.store-note h2 {
  margin-bottom: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.drop-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.product-card:nth-child(2) {
  transform: translateY(30px);
}

.product-art {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 44px;
  overflow: hidden;
}

.product-art img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
}

.product-art-dark {
  background: radial-gradient(circle at center, #242936 0, #0c0f17 68%);
}

.product-art-dark img {
  transform: rotate(-2deg);
}

.product-art-dark .tee-banner {
  width: 118%;
  max-width: 430px;
  box-shadow: none;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.55));
}

.product-art-sticker {
  background: linear-gradient(135deg, #13a9d0, #1e51c9 55%, #6036a8);
}

.product-art-sticker img {
  border-radius: 50%;
  transform: rotate(3deg);
}

.product-art-print {
  background: linear-gradient(145deg, #ff477e, #e8751a 65%, #ffd12c);
}

.product-art-print img {
  border: 10px solid #f5f3ed;
  transform: rotate(-1deg);
}

.product-copy {
  min-height: 210px;
  padding: 30px;
  border-top: 1px solid var(--line);
}

.product-status {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0 0 12px;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.product-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.store-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 56px;
  padding: 112px 0 96px;
}

.store-note .section-label {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.store-note p:last-child {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 72px 0 64px;
  }

  .logo-banner {
    margin: 34px -2% 0;
  }

  .note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .note > p {
    margin-top: 0;
  }

  .story-hero {
    padding: 80px 0 64px;
  }

  .archive-heading {
    grid-template-columns: 1fr;
  }

  .archive-heading .section-label {
    grid-column: auto;
  }

  .flyer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flyer-grid figure:nth-child(3n + 2) {
    margin-top: 0;
  }

  .flyer-grid figure:nth-child(even) {
    margin-top: 42px;
  }

  .store-hero,
  .drop-heading,
  .store-note {
    grid-template-columns: 1fr;
  }

  .store-hero {
    gap: 36px;
    padding: 80px 0 72px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:nth-child(2) {
    transform: none;
  }

  .store-note .section-label {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 84px;
  }

  .wordmark > span:last-child {
    max-width: 120px;
    line-height: 1.15;
  }

  .header-link {
    font-size: 0.82rem;
  }

  .header-nav {
    gap: 14px;
  }

  .header-nav .header-link:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .status {
    justify-content: center;
  }

  .logo-banner {
    margin: 28px -1% 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 56px 0;
  }

  .archive {
    padding: 80px 0 64px;
  }

  .flyer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .flyer-grid figure:nth-child(even) {
    margin-top: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-art {
    min-height: 300px;
    padding: 34px;
  }

  .store-note {
    padding: 80px 0 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
