:root {
  --black: #050505;
  --ink: #111;
  --paper: #f3f1ed;
  --bone: #fffdf7;
  --purple: #ffd12a;
  --purple-dark: #9b6b00;
  --muted: #d7d2c9;
  --cyan: #42cdf9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 23%, rgba(255, 209, 42, 0.2), transparent 18rem),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--black);
  background-size: auto, 4px 4px, 4px 4px, auto;
  color: var(--bone);
  font-family: "Space Mono", monospace;
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 42px);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  justify-self: center;
  display: block;
  width: clamp(160px, 17vw, 250px);
  line-height: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: none;
  gap: 22px;
  justify-self: start;
  margin-left: 28px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.header-actions {
  display: flex;
  justify-content: end;
  gap: 18px;
}

.icon-button,
.search-button {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
}

.icon-button {
  display: none;
}

.icon-button span {
  display: block;
  width: 34px;
  height: 4px;
  margin: 6px 0;
  background: var(--bone);
  border-radius: 99px;
}

.search-button::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  top: 5px;
  left: 4px;
  border: 5px solid var(--bone);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.search-button::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 5px;
  top: 29px;
  left: 26px;
  background: var(--bone);
  border-radius: 999px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.bag-button {
  display: none;
  position: relative;
  border: 3px solid var(--bone);
  border-top: 0;
  width: 30px;
  height: 31px;
  margin-top: 8px;
  padding: 0;
  background: transparent;
  color: var(--bone);
}

.bag-button::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 10px;
  top: -10px;
  left: 5px;
  border: 3px solid var(--bone);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.bag-button span {
  position: absolute;
  right: -14px;
  bottom: -7px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
}

.search-panel {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  top: calc(100% + 10px);
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-header.search-open .search-panel {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-panel input,
.big-search input,
.admin-card input,
.admin-card textarea,
.admin-card select {
  width: 100%;
  min-width: 0;
  color: var(--bone);
  background: #080808;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.search-panel input {
  min-height: 42px;
  padding: 0 14px;
}

.search-panel button,
.big-search button,
.admin-card button {
  min-height: 42px;
  border: 0;
  padding: 0 18px;
  color: var(--bone);
  background: var(--purple);
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: clamp(560px, calc(100vh - 76px), 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(44px, 7vw, 86px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.92) 100%),
    url("assets/images/hero-collage.png") center / cover;
}

.hero::after,
.drop-band::before,
.story-section::before,
.newsletter::before {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  height: 52px;
  background: var(--paper);
  clip-path: polygon(0 26%, 4% 56%, 9% 39%, 14% 71%, 19% 48%, 26% 70%, 33% 42%, 40% 68%, 47% 39%, 54% 66%, 61% 44%, 67% 72%, 74% 42%, 81% 61%, 88% 37%, 94% 58%, 100% 31%, 100% 100%, 0 100%);
}

.hero::after,
.drop-band::before,
.story-section::before,
.newsletter::before,
.story-section::after {
  display: none;
}

.paper-layer,
.tear-layer {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero-white-tear,
.tear-layer {
  display: none;
}

.tear-layer {
  left: 50%;
  width: min(1500px, 94vw);
  height: clamp(72px, 8vw, 116px);
  object-fit: fill;
  z-index: 5;
  transform: translateX(-50%);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45));
}

.tear-top {
  top: -24px;
}

.tear-bottom {
  bottom: -31px;
}

.tear-layer.dark {
  opacity: 0.9;
}

.hero::after {
  bottom: -1px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(720px, 52vw);
  max-width: 100%;
  justify-self: end;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.45);
}

.eyebrow {
  color: var(--purple);
  font-weight: 700;
  margin: 0 0 10px;
}

.hero h1,
.story-copy h2,
.featured-heading h2,
.newsletter h2 {
  font-family: "Anton", Impact, sans-serif;
  margin: 0;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(4rem, 7.2vw, 7rem);
  line-height: 0.9;
  overflow-wrap: normal;
}

.marker,
.story-copy span {
  display: block;
  color: var(--purple);
  font-family: "Permanent Marker", cursive;
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  line-height: 0.8;
  text-transform: none;
  transform: rotate(-3deg);
}

.hero-text {
  max-width: 520px;
  margin: 30px 0 24px;
  color: var(--bone);
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-transform: none;
}

.outline-cta,
.section-kicker a,
.featured-heading a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 24px;
  border: 2px solid var(--purple);
  color: var(--bone);
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 5px 5px 0 rgba(255, 209, 42, 0.2);
  text-transform: uppercase;
  font-weight: 700;
}

.outline-cta:hover,
.section-kicker a:hover,
.featured-heading a:hover,
.newsletter button:hover {
  background: var(--purple);
}

.sticker {
  position: absolute;
  z-index: 4;
  transform: rotate(-13deg);
  font-family: "Permanent Marker", cursive;
  color: #0c0710;
  background: rgba(255, 209, 42, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.tape-sticker {
  top: 58px;
  left: 28px;
  padding: 18px 42px;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-purple-tape {
  z-index: 2;
  right: clamp(34px, 13vw, 260px);
  bottom: clamp(94px, 15vh, 150px);
  width: min(360px, 28vw);
  opacity: 0.74;
  transform: rotate(-5deg);
  filter: hue-rotate(145deg) saturate(1.35) brightness(1.08);
}

.hero-white-tear {
  z-index: 2;
  left: 50%;
  bottom: -28px;
  width: min(1500px, 94vw);
  height: clamp(72px, 8vw, 110px);
  object-fit: fill;
  transform: translateX(-50%);
}

.drop-band,
.story-section,
.newsletter {
  position: relative;
}

.drop-band {
  display: grid;
  grid-template-columns: minmax(130px, 170px) minmax(0, 1fr) 58px;
  gap: clamp(14px, 2vw, 24px);
  padding: 58px clamp(20px, 5vw, 70px) 42px;
  background: var(--black);
  overflow: hidden;
}

.drop-band::before,
.newsletter::before {
  top: -1px;
  transform: rotate(180deg);
}

.section-kicker h2 {
  margin: 0;
  color: var(--purple);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.section-kicker p,
.featured-heading p {
  margin: 10px 0 18px;
  text-transform: uppercase;
  font-weight: 700;
}

.section-kicker a {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.78rem;
}

.mini-grid,
.product-grid {
  display: grid;
  gap: clamp(14px, 1.8vw, 26px);
  min-width: 0;
}

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

.mini-card,
.product-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  color: var(--ink);
}

a.mini-card,
a.product-card {
  cursor: pointer;
  transition: transform 0.18s ease;
}

a.mini-card:hover,
a.product-card:hover {
  transform: translateY(-3px);
}

.mini-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/images/paper-white-card.png") center / 100% 100% no-repeat;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.32));
}

.sold-out-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--bone);
  background: #c42525;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mini-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 345px;
  padding: 18px 18px 28px;
  gap: 8px;
}

.product-photo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 220px;
  overflow: hidden;
  background: transparent;
}

.product-photo img {
  display: block;
  width: 112%;
  height: 112%;
  max-height: none;
  object-fit: cover;
  object-position: center 58%;
  mix-blend-mode: multiply;
}

.product-photo.large {
  min-height: 285px;
}

.product-photo.large img {
  width: 108%;
  height: 108%;
}

.mini-card h3,
.product-card h3 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.product-label {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: grid;
  align-content: center;
  padding: 0 4px;
  background: transparent;
  filter: none;
  clip-path: none;
}

.mini-card .product-label h3 {
  text-align: center;
  font-size: clamp(1rem, 1.45vw, 1.38rem);
}

.product-label p {
  margin: 7px 0 0;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  line-height: 1;
}

.mini-card .product-label p {
  text-align: center;
  font-size: 0.95rem;
}

.product-art {
  position: relative;
  height: 175px;
  margin: 0 auto;
  width: min(100%, 190px);
}

.product-art::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 112px;
  height: 148px;
  background: #050505;
  border-radius: 22px 22px 8px 8px;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px #1b1b1b, 0 12px 18px rgba(0, 0, 0, 0.22);
}

.product-art::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58px;
  width: 188px;
  height: 100px;
  background: #060606;
  clip-path: polygon(7% 0, 31% 10%, 39% 82%, 22% 88%, 17% 38%, 0 72%, 0 31%, 7% 0, 93% 0, 100% 31%, 100% 72%, 83% 38%, 78% 88%, 61% 82%, 69% 10%);
  transform: translateX(-50%);
}

.product-art span {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 88px;
  width: 40px;
  height: 40px;
  border: 3px solid var(--purple);
  border-radius: 50%;
  transform: translateX(-50%);
}

.product-art.zip::before {
  background:
    linear-gradient(90deg, transparent 48%, #d9d9d9 49%, #d9d9d9 51%, transparent 52%),
    #050505;
}

.product-art.zip span {
  width: 52px;
  height: 24px;
  top: 86px;
  border-radius: 0;
  border: 0;
  background: radial-gradient(circle, var(--bone) 0 3px, transparent 4px) 0 0 / 14px 14px;
}

.product-art.long::after,
.product-art.tee::after {
  top: 70px;
  height: 84px;
}

.product-art.crown span {
  width: 48px;
  height: 42px;
  border: 0;
  border-bottom: 5px solid #d7a329;
  border-radius: 0;
  clip-path: polygon(0 100%, 0 42%, 20% 65%, 38% 12%, 55% 58%, 79% 25%, 100% 66%, 100% 100%);
  background: #d7a329;
}

.product-art.face span {
  background: radial-gradient(circle at 35% 38%, var(--bone) 0 4px, transparent 5px), radial-gradient(circle at 66% 38%, var(--purple) 0 4px, transparent 5px), var(--ink);
}

.product-art.low::after {
  background:
    linear-gradient(90deg, var(--cyan) 0 5px, transparent 5px 100%) 12px 22px / 12px 13px repeat-y,
    #060606;
}

.vertical-tag {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--purple);
  font-family: "Permanent Marker", cursive;
  font-size: 1.7rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  clip-path: polygon(9% 0, 100% 4%, 92% 100%, 0 94%);
}

.story-section {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(76px, 9vw, 112px) clamp(20px, 6vw, 78px);
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.84)),
    radial-gradient(circle at 80% 20%, rgba(255, 209, 42, 0.2), transparent 20rem),
    #101010;
}

.story-section::before {
  top: -1px;
  transform: rotate(180deg);
}

.story-section::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -1px;
  height: 46px;
  background: var(--paper);
  clip-path: polygon(0 100%, 0 33%, 7% 59%, 14% 31%, 22% 66%, 31% 35%, 41% 69%, 48% 34%, 55% 59%, 63% 29%, 72% 66%, 82% 38%, 91% 67%, 100% 36%, 100% 100%);
}

.story-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  filter: hue-rotate(145deg) saturate(1.25) brightness(1.05);
}

.story-crown-decor {
  left: clamp(18px, 3vw, 54px);
  bottom: clamp(46px, 8vw, 110px);
  width: min(260px, 19vw);
  opacity: 0.32;
  transform: rotate(-12deg);
}

.story-tape-decor {
  right: clamp(10px, 2.4vw, 42px);
  bottom: clamp(18px, 4vw, 52px);
  width: min(300px, 19vw);
  opacity: 0.48;
  transform: rotate(10deg);
}

.story-barcode-decor {
  right: clamp(32px, 6vw, 96px);
  top: clamp(44px, 8vw, 92px);
  width: min(126px, 8vw);
  opacity: 0.48;
  transform: rotate(4deg);
}

.film-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  background: #080808;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(-6deg);
}

.film-strip div {
  min-height: 210px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.75)),
    url("assets/images/hero-collage.png") center / cover;
  filter: grayscale(1);
}

.film-strip p {
  position: absolute;
  left: 24px;
  bottom: -36px;
  padding: 14px 32px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Permanent Marker", cursive;
  font-size: 1.7rem;
  transform: rotate(-9deg);
}

.story-copy h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.94;
}

.story-copy p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  color: var(--bone);
  font-size: 1rem;
}

.outline-cta.small {
  min-height: 42px;
  padding: 10px 22px;
}

.back-print {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.story-purple-note {
  z-index: 0;
  right: 5%;
  bottom: -18px;
  width: 150px;
  opacity: 0.5;
  transform: rotate(13deg);
  filter: hue-rotate(145deg) saturate(1.35) brightness(1.08);
}

.shirt-back {
  position: relative;
  z-index: 1;
  width: min(290px, 70vw);
  height: 330px;
  background: #050505;
  clip-path: polygon(14% 9%, 36% 0, 64% 0, 86% 9%, 100% 33%, 83% 47%, 79% 100%, 21% 100%, 17% 47%, 0 33%);
  box-shadow: 0 22px 30px rgba(0, 0, 0, 0.4);
}

.shirt-back span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--purple);
  font-family: "Permanent Marker", cursive;
  text-align: center;
  text-transform: uppercase;
}

.shirt-back .top {
  top: 64px;
  width: 230px;
  font-size: 1.5rem;
}

.shirt-back .skull {
  top: 112px;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 44% 38%, var(--bone) 0 9px, transparent 10px), radial-gradient(circle at 62% 38%, var(--purple) 0 9px, transparent 10px), #2f2608;
  color: var(--bone);
  font-family: "Space Mono", monospace;
  font-weight: 700;
}

.shirt-face-mark {
  position: absolute;
  left: 50%;
  top: 96px;
  width: 112px;
  height: 112px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.34));
}

.shirt-back .bottom {
  bottom: 66px;
  width: 210px;
  font-size: 1.35rem;
}

.back-print p {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  color: var(--purple);
  font-family: "Permanent Marker", cursive;
  font-size: 1.3rem;
  transform: rotate(-6deg);
}

.featured {
  position: relative;
  min-height: min(980px, 92vh);
  padding: 38px clamp(20px, 5vw, 70px) clamp(46px, 6vw, 72px);
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 31%, rgba(255, 209, 42, 0.24), transparent 23rem),
    radial-gradient(circle at 18% 72%, rgba(255, 209, 42, 0.14), transparent 18rem),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--black);
  background-size: auto, auto, auto, 4px 4px, 4px 4px, auto;
  overflow: hidden;
}

.featured::before {
  content: "";
  position: absolute;
  left: 21%;
  right: 21%;
  top: clamp(188px, 18vw, 245px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.featured::after {
  content: none;
  position: absolute;
  left: 50%;
  top: clamp(140px, 15vw, 205px);
  width: min(980px, 78vw);
  height: clamp(90px, 9vw, 128px);
  border: 4px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 14px rgba(255, 209, 42, 0.24));
  pointer-events: none;
}

.collection-rack-link {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: clamp(122px, 10vw, 158px);
  width: min(1220px, 86vw);
  max-width: none;
  display: block;
  transform: translateX(-50%);
  cursor: pointer;
}

.collection-rack {
  display: block;
  width: 100%;
  max-width: none;
  opacity: 0.96;
  filter: contrast(1.04) brightness(0.92) drop-shadow(0 28px 34px rgba(0, 0, 0, 0.78));
}

.collection-decor {
  position: absolute;
  z-index: 0;
  max-width: none;
  pointer-events: none;
  user-select: none;
  filter: hue-rotate(145deg) saturate(1.25) brightness(1.05);
}

.collection-decor.crown {
  left: 4%;
  bottom: 18%;
  width: min(260px, 20vw);
  opacity: 0.14;
  transform: rotate(-12deg);
}

.collection-decor.tape {
  left: -3%;
  bottom: -4%;
  width: min(430px, 32vw);
  opacity: 0.35;
  transform: rotate(9deg);
}

.collection-decor.barcode {
  right: 1.4%;
  top: 11%;
  width: min(132px, 9vw);
  opacity: 0.48;
  transform: rotate(0deg);
}

.collection-crown {
  position: absolute;
  z-index: 0;
  left: clamp(16px, 3vw, 50px);
  bottom: clamp(34px, 6vw, 78px);
  width: clamp(120px, 18vw, 260px);
  height: auto;
  opacity: 0.46;
  transform: rotate(-9deg);
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.42));
}

.collection-side-note {
  position: absolute;
  right: clamp(8px, 3vw, 42px);
  top: 38%;
  color: var(--purple);
  font-size: 0.7rem;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0.75;
}

.featured-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto clamp(18px, 2vw, 30px);
  text-transform: uppercase;
}

.featured-heading h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.featured-heading h2::after {
  content: none;
}

.featured-heading p {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.45;
}

.featured-heading p::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin-top: 10px;
  background: var(--purple);
}

.featured-heading a {
  justify-self: end;
  border: 0;
  box-shadow: none;
  color: var(--purple);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(255px, 1fr));
  justify-content: center;
}

.category-rail {
  position: relative;
  z-index: 2;
  display: none;
  align-items: start;
  gap: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  min-height: clamp(430px, 43vw, 570px);
  margin-top: clamp(-28px, -2vw, -12px);
  padding: clamp(42px, 5.7vw, 82px) max(4px, calc(50% - 560px)) 10px;
  scrollbar-width: none;
}

.category-rail::-webkit-scrollbar {
  display: none;
}

.category-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto auto;
  flex: 0 0 clamp(150px, 13vw, 210px);
  min-height: clamp(310px, 30vw, 430px);
  margin-inline: clamp(-12px, -0.9vw, -5px);
  padding: 0 4px 18px;
  color: var(--bone);
  scroll-snap-align: start;
  overflow: visible;
  transform: scale(0.76) translateY(34px);
  transform-origin: top center;
  opacity: 0.34;
  filter: grayscale(0.55) brightness(0.62);
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.category-card:first-child {
  flex-basis: clamp(265px, 24vw, 350px);
  transform: scale(1) translateY(0);
  opacity: 1;
  filter: none;
  z-index: 3;
}

.category-card:hover {
  opacity: 1;
  filter: none;
}

.category-photo,
.category-label {
  position: relative;
  z-index: 1;
}

.category-photo {
  position: relative;
  display: grid;
  place-items: start center;
  min-height: clamp(250px, 27vw, 390px);
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.category-photo::before {
  content: none;
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 48px;
  background: linear-gradient(rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-50%);
}

.category-photo::after {
  content: none;
  position: absolute;
  top: 42px;
  left: 50%;
  width: 46px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.category-garment {
  position: relative;
  z-index: 2;
  display: block;
  width: 150%;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  margin-top: clamp(-108px, -7.8vw, -64px);
  mix-blend-mode: normal;
  filter: contrast(1.18) saturate(0.78) brightness(0.78) drop-shadow(0 24px 26px rgba(0, 0, 0, 0.74));
}

.category-card:first-child .category-photo {
  box-shadow: none;
}

.category-card:first-child .category-garment {
  width: 158%;
  margin-top: clamp(-132px, -9vw, -78px);
  filter: contrast(1.22) saturate(0.86) brightness(0.88) drop-shadow(0 28px 34px rgba(0, 0, 0, 0.75));
}

.category-long-sleeves .category-garment {
  width: 196%;
  margin-top: clamp(-190px, -13vw, -118px);
}

.category-tees .category-garment {
  width: 144%;
  margin-top: clamp(-92px, -6.2vw, -56px);
}

.category-label {
  justify-self: center;
  min-width: 58%;
  margin-top: -22px;
  padding: 9px 18px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 209, 42, 0.24), 0 14px 20px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(4px);
}

.category-label h3 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  color: var(--purple);
  font-size: clamp(1rem, 2vw, 2.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.category-label span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.category-count {
  position: relative;
  z-index: 1;
  justify-self: center;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.collection-copy {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: clamp(430px, 37vw, 560px) auto 0;
  text-align: center;
}

.collection-copy p,
.collection-copy span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
}

.collection-copy h3 {
  margin: 8px 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  background: linear-gradient(#fff, #777);
  -webkit-background-clip: text;
  color: transparent;
}

.collection-copy .outline-cta {
  margin-top: 18px;
}

.category-card:first-child .category-label h3 {
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
}

.category-card:first-child .category-label {
  margin-top: -34px;
}

.category-card:nth-child(2),
.category-card:nth-child(4) {
  transform: scale(0.86) translateY(22px);
  opacity: 0.58;
}

.category-card:nth-child(3) {
  transform: scale(0.72) translateY(48px);
}

@media (min-width: 769px) {
  .category-rail {
    justify-content: center;
    overflow: visible;
    max-width: 1120px;
    margin: clamp(-58px, -4vw, -32px) auto 0;
    padding: clamp(18px, 3vw, 42px) 0 10px;
  }

  .category-card {
    flex-basis: clamp(165px, 14vw, 220px);
    margin-inline: clamp(-26px, -1.6vw, -12px);
  }

  .category-hoodies {
    order: 2;
    flex-basis: clamp(270px, 22vw, 330px);
    transform: scale(1) translateY(0);
    opacity: 1;
    filter: none;
    z-index: 4;
  }

  .category-long-sleeves {
    order: 1;
    transform: scale(0.78) translateY(46px);
    opacity: 0.34;
  }

  .category-tees {
    order: 3;
    transform: scale(0.78) translateY(46px);
    opacity: 0.34;
  }

  .category-hoodies .category-garment {
    width: 136%;
    margin-top: clamp(-72px, -4.8vw, -44px);
  }

  .category-long-sleeves .category-garment {
    width: 168%;
    margin-top: clamp(-128px, -8.4vw, -86px);
  }

  .category-tees .category-garment {
    width: 128%;
    margin-top: clamp(-58px, -3.9vw, -36px);
  }

  .category-hoodies .category-label {
    margin-top: -28px;
  }
}

.collection-arrow {
  position: absolute;
  z-index: 3;
  top: 48%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--bone);
  background: rgba(0, 0, 0, 0.3);
  font-size: 2.3rem;
  line-height: 1;
}

.collection-arrow.prev {
  left: clamp(14px, 6vw, 130px);
}

.collection-arrow.next {
  right: clamp(14px, 6vw, 130px);
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(255px, 23vw);
  gap: clamp(14px, 1.8vw, 26px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 2px 4px 18px;
}

.product-rail .product-card {
  scroll-snap-align: start;
}

.product-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 450px;
  width: 100%;
  max-width: none;
  padding: 26px 28px 32px;
  gap: 10px;
}

.product-card .product-art {
  height: 290px;
  width: min(100%, 250px);
}

.product-card h3 {
  text-align: left;
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
}

.product-card p {
  margin: 6px 0 0;
  font-weight: 700;
  font-size: 1rem;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(520px, 690px) minmax(220px, 320px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 44px);
  padding: 78px clamp(20px, 6vw, 78px) 42px;
  background: var(--black);
  overflow: hidden;
}

.crown-note {
  width: min(100%, 330px);
  aspect-ratio: 1.45;
  min-height: 0;
  justify-self: center;
  background: rgba(255, 209, 42, 0.86);
  transform: rotate(-5deg);
  opacity: 0.9;
}

.crown-note::before {
  content: "";
  display: none;
}

.join-copy {
  min-width: 0;
}

.newsletter h2 {
  font-size: clamp(3.25rem, 5.2vw, 5rem);
  line-height: 0.95;
  white-space: nowrap;
}

.newsletter p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.newsletter form {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, auto);
  gap: 10px;
  max-width: 680px;
}

.newsletter input {
  min-width: 0;
  min-height: 50px;
  padding: 0 18px;
  color: var(--bone);
  background: #080808;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.newsletter button {
  min-height: 50px;
  border: 0;
  padding: 0 26px;
  color: var(--bone);
  background: var(--purple);
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.paper-logo {
  align-self: center;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 320px);
  aspect-ratio: 1.4;
  min-height: 0;
  color: var(--ink);
  background: url("assets/images/paper-white-wide.png") center / 100% 100% no-repeat;
  transform: rotate(-6deg);
}

.paper-logo img {
  width: 76%;
  filter: invert(1);
  mix-blend-mode: multiply;
}

.blog-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.9)),
    url("assets/images/hero-collage.png") center / cover;
}

.blog-hero h1 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(5rem, 14vw, 10rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.blog-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.blog-tape {
  right: 8%;
  bottom: 76px;
  width: min(360px, 34vw);
  opacity: 0.75;
  transform: rotate(-7deg);
}

.blog-list {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  padding: clamp(54px, 7vw, 86px) clamp(20px, 6vw, 78px);
  background: var(--black);
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px);
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    url("assets/images/paper-white-wide.png") center / cover;
  clip-path: polygon(1% 1%, 97% 0, 100% 9%, 98% 96%, 9% 100%, 0 91%);
}

.blog-image {
  min-height: 280px;
  overflow: hidden;
  background: #fff;
}

.blog-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 36%;
  mix-blend-mode: multiply;
}

.blog-meta {
  margin: 0 0 10px;
  color: var(--purple-dark);
  font-weight: 700;
  text-transform: uppercase;
}

.blog-copy h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.blog-copy > p:last-of-type {
  max-width: 660px;
  margin: 18px 0 22px;
  color: #171717;
}

.admin-hero {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.96)),
    linear-gradient(135deg, rgba(255, 209, 42, 0.36), transparent 34%),
    url("assets/images/hero-collage.png") center / cover;
  border-bottom: 4px solid var(--purple);
}

.admin-hero h1,
.result-block h2,
.admin-card h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
}

.admin-hero h1 {
  font-size: clamp(4.4rem, 12vw, 9rem);
  color: var(--purple);
  text-shadow: 5px 5px 0 #000;
}

.admin-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--bone);
  font-weight: 700;
}

.admin-message,
.empty-state {
  display: inline-block;
  padding: 10px 14px;
  color: var(--bone);
  background: rgba(255, 209, 42, 0.82);
  text-transform: uppercase;
  font-weight: 700;
}

.big-search {
  display: grid;
  grid-template-columns: minmax(220px, 560px) auto;
  gap: 10px;
  max-width: 760px;
  margin-top: 24px;
}

.big-search input {
  min-height: 52px;
  padding: 0 16px;
}

.search-results,
.admin-grid {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(42px, 6vw, 78px) clamp(20px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(255, 209, 42, 0.12), transparent 30%),
    #0b0b0b;
}

.item-page {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(34px, 6vw, 78px) clamp(20px, 6vw, 78px);
  background:
    linear-gradient(135deg, rgba(255, 209, 42, 0.12), transparent 30%),
    #0b0b0b;
}

.item-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.item-tabs a {
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 2px solid rgba(255, 209, 42, 0.55);
  color: var(--bone);
  text-transform: uppercase;
  font-weight: 700;
}

.item-tabs a.active,
.item-tabs a:hover {
  color: var(--black);
  background: var(--purple);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.item-grid .product-card {
  min-width: 0;
}

.result-block {
  min-width: 0;
}

.result-block h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.blog-list.compact {
  padding: 0;
}

.admin-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  align-items: start;
}

.login-grid {
  grid-template-columns: minmax(260px, 440px);
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--bone);
  background: #121212;
  border: 2px solid rgba(255, 209, 42, 0.72);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(255, 209, 42, 0.22);
}

.admin-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--purple);
}

.login-card {
  max-width: 440px;
}

.admin-toolbar {
  display: flex;
  justify-content: flex-end;
  padding: 18px clamp(20px, 6vw, 78px) 0;
  background: #0b0b0b;
}

.admin-toolbar button {
  min-height: 38px;
  border: 2px solid rgba(255, 209, 42, 0.72);
  padding: 0 16px;
  color: var(--purple);
  background: transparent;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.admin-error {
  margin: 0;
  padding: 10px 12px;
  color: var(--bone);
  background: rgba(196, 37, 37, 0.86);
  font-weight: 700;
}

.admin-note {
  margin: 0;
  color: rgba(255, 253, 247, 0.72);
}

.item-control {
  align-content: start;
}

.item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.item-row div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.item-row strong,
.item-row span {
  overflow-wrap: anywhere;
}

.item-row span {
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.72rem;
}

.item-row button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--bone);
  background: rgba(196, 37, 37, 0.92);
}

.item-row button:disabled {
  color: rgba(255, 253, 247, 0.56);
  background: rgba(255, 255, 255, 0.12);
  cursor: default;
}

.edit-panel,
.edit-form {
  align-content: start;
}

.edit-form {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.edit-item {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.edit-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
}

.edit-item summary::-webkit-details-marker {
  display: none;
}

.edit-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--black);
  background: var(--purple);
  font-weight: 700;
}

.edit-item[open] summary::after {
  content: "-";
}

.edit-item summary span,
.edit-item summary small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.edit-item summary small {
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.72rem;
}

.edit-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.item-kind {
  display: inline-block;
  width: fit-content;
  margin: 0;
  padding: 5px 8px;
  color: var(--black);
  background: var(--purple);
  font-size: 0.68rem;
  font-weight: 700;
}

.admin-card button.danger-button {
  color: var(--bone);
  background: rgba(196, 37, 37, 0.92);
}

.crop-panel {
  display: none;
  gap: 10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.crop-panel.is-ready {
  display: grid;
}

.crop-canvas {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  background: #050505;
}

.crop-panel label {
  font-size: 0.66rem;
}

.crop-panel input[type="range"] {
  min-height: 28px;
  padding: 0;
}

.admin-card label {
  display: grid;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-card input,
.admin-card textarea,
.admin-card select {
  min-height: 42px;
  padding: 9px 12px;
  color: var(--bone);
  background: #050505;
  border-color: rgba(255, 255, 255, 0.34);
}

.admin-card button {
  color: var(--black);
  background: var(--purple);
}

.admin-card input:focus,
.admin-card textarea:focus,
.admin-card select:focus {
  outline: 3px solid rgba(66, 205, 249, 0.45);
  border-color: var(--cyan);
}

.admin-card textarea {
  resize: vertical;
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.check-row label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-row input {
  width: auto;
  min-height: 0;
}

.benefits {
  position: static;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  min-height: 42px;
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.benefits span {
  display: grid;
  place-items: center;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    display: flex;
  }
}

@media (max-width: 980px) {
  .icon-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 25;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 10px clamp(18px, 4vw, 42px) 14px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  .site-header.menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 42px;
    display: grid;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bone);
  }

  .site-header.menu-open .icon-button span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .site-header.menu-open .icon-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .icon-button span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .icon-button span {
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .hero {
    min-height: 650px;
    background-position: 34% center;
  }

  .hero-copy {
    width: min(620px, 100%);
    justify-self: stretch;
    align-self: end;
  }

  .hero-purple-tape {
    right: 20px;
    bottom: 112px;
    width: min(280px, 42vw);
  }

  .drop-band,
  .story-section,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .newsletter {
    justify-items: center;
  }

  .newsletter h2 {
    white-space: normal;
  }

  .join-copy {
    width: min(100%, 680px);
  }

  .mini-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    justify-content: center;
  }

  .vertical-tag {
    display: none;
  }

  .featured-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .featured-heading p {
    margin: 0;
  }

  .back-print p {
    right: 12px;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      var(--black);
    background-size: 4px 4px, 4px 4px, auto;
  }

  .site-header {
    grid-template-columns: 44px 1fr auto;
    min-height: 58px;
    padding-inline: 18px 14px;
    background: rgba(0, 0, 0, 0.96);
  }

  .brand {
    width: 96px;
    justify-self: center;
  }

  .header-actions {
    align-items: center;
    gap: 13px;
  }

  .item-page {
    padding-inline: 10px;
  }

  .item-tabs {
    gap: 6px;
  }

  .item-tabs a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.64rem;
  }

  .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .item-grid .product-card {
    min-height: 230px;
  }

  .search-button {
    display: block;
    width: 31px;
    height: 31px;
  }

  .search-button::before {
    width: 17px;
    height: 17px;
    top: 2px;
    left: 1px;
    border-width: 3px;
  }

  .search-button::after {
    width: 14px;
    height: 3px;
    top: 22px;
    left: 20px;
  }

  .bag-button {
    display: none;
    width: 24px;
    height: 26px;
    margin-top: 3px;
    border-width: 2px;
  }

  .bag-button::before {
    width: 11px;
    height: 8px;
    top: -8px;
    left: 4px;
    border-width: 2px;
  }

  .bag-button span {
    right: -11px;
    bottom: -6px;
    width: 18px;
    height: 18px;
    font-size: 0.58rem;
  }

  .icon-button {
    width: 34px;
  }

  .icon-button span {
    width: 30px;
    height: 3px;
    margin: 5px 0;
  }

  .hero {
    min-height: 355px;
    align-items: center;
    padding: 34px 16px 42px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24) 42%, rgba(0, 0, 0, 0.74) 100%),
      url("assets/images/hero-collage.png") 35% center / cover;
  }

  .hero-copy {
    width: 47%;
    justify-self: end;
    align-self: center;
  }

  .eyebrow {
    display: none;
  }

  .tape-sticker {
    top: auto;
    bottom: 24px;
    left: 14px;
    right: auto;
    padding: 8px 20px;
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
    line-height: 0.9;
  }

  .marker {
    font-size: clamp(1.8rem, 9.4vw, 3rem);
  }

  .hero-purple-tape {
    width: 106px;
    right: -20px;
    bottom: 92px;
    opacity: 0.78;
  }

  .hero-text {
    max-width: 220px;
    margin: 13px 0 14px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .outline-cta {
    min-height: 32px;
    padding: 7px 14px;
    font-size: 0.62rem;
    box-shadow: none;
  }

  .hero-white-tear {
    bottom: -20px;
    width: 105vw;
    height: 48px;
  }

  .drop-band {
    grid-template-columns: 84px minmax(0, 1fr) 20px;
    gap: 6px;
    align-items: center;
    padding: 32px 6px 28px;
  }

  .section-kicker h2 {
    font-size: clamp(2.08rem, 10.5vw, 2.95rem);
    line-height: 0.85;
  }

  .section-kicker p {
    margin: 8px 0 12px;
    font-size: 0.62rem;
  }

  .section-kicker a {
    min-height: 30px;
    padding: 6px 8px;
    font-size: 0.5rem;
    box-shadow: 4px 4px 0 rgba(255, 209, 42, 0.2);
  }

  .mini-grid,
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    justify-content: center;
  }

  .vertical-tag {
    display: grid;
    min-height: 235px;
    font-size: 0.75rem;
  }

  .mini-card {
    min-height: 142px;
    padding: 8px 4px 11px;
    gap: 2px;
  }

  .product-photo {
    min-height: 82px;
  }

  .product-photo img {
    width: 112%;
    height: 112%;
    object-position: center 56%;
  }

  .mini-card .product-label h3 {
    font-size: clamp(0.5rem, 2.6vw, 0.78rem);
    line-height: 1.05;
  }

  .mini-card .product-label p {
    display: none;
  }

  .product-card {
    min-height: 190px;
    padding: 10px 5px 13px;
    gap: 3px;
  }

  .category-stack {
    gap: 22px;
  }

  .category-row-heading {
    margin-bottom: 8px;
  }

  .category-row-heading h3 {
    font-size: clamp(1.45rem, 7vw, 2.2rem);
  }

  .category-row-heading span {
    font-size: 0.55rem;
  }

  .product-rail {
    grid-auto-columns: minmax(104px, 28vw);
    gap: 5px;
    padding-bottom: 10px;
  }

  .story-section {
    grid-template-columns: 0.82fr 1.05fr 0.83fr;
    gap: 10px;
    padding: 36px 10px 42px;
  }

  .film-strip {
    gap: 5px;
    padding: 8px;
    border-width: 1px;
  }

  .film-strip div {
    min-height: 100px;
  }

  .film-strip p {
    left: 11px;
    bottom: -22px;
    padding: 6px 18px;
    font-size: 0.8rem;
  }

  .story-crown-decor {
    left: -8px;
    bottom: 38px;
    width: 98px;
    opacity: 0.26;
  }

  .story-tape-decor {
    right: -22px;
    bottom: 12px;
    width: 118px;
    opacity: 0.38;
  }

  .story-barcode-decor {
    right: 10px;
    top: 28px;
    width: 48px;
    opacity: 0.38;
  }

  .story-copy h2 {
    font-size: clamp(1.45rem, 7.4vw, 2.4rem);
    line-height: 0.96;
  }

  .story-copy span {
    font-size: clamp(1.55rem, 8vw, 2.5rem);
  }

  .story-copy p {
    margin: 12px 0;
    font-size: 0.58rem;
    line-height: 1.45;
  }

  .outline-cta.small {
    min-height: 30px;
    padding: 6px 12px;
  }

  .back-print {
    min-height: 170px;
  }

  .shirt-back {
    width: min(142px, 30vw);
    height: 165px;
  }

  .shirt-back .top {
    top: 31px;
    width: 112px;
    font-size: 0.72rem;
  }

  .shirt-back .skull {
    top: 56px;
    width: 52px;
    height: 52px;
    font-size: 0.62rem;
  }

  .shirt-face-mark {
    top: 48px;
    width: 56px;
    height: 56px;
  }

  .shirt-back .bottom {
    bottom: 32px;
    width: 108px;
    font-size: 0.68rem;
  }

  .back-print p {
    top: -11px;
    right: -5px;
    font-size: 0.68rem;
  }

  .featured {
    padding: 36px 3px 34px;
  }

  .featured-heading {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    margin-bottom: 16px;
  }

  .featured-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }

  .featured-heading h2::after {
    border-width: 3px;
  }

  .featured-heading p,
  .featured-heading a {
    font-size: 0.58rem;
  }

  .collection-rack-link {
    top: 104px;
    width: 118vw;
  }

  .category-rail {
    gap: 0;
    min-height: 212px;
    margin-top: 2px;
    padding: 4px 0 10px;
  }

  .category-card {
    flex-basis: 112px;
    min-height: 194px;
    margin-inline: -8px;
    padding: 8px 4px 11px;
    transform: scale(0.82);
  }

  .category-card:first-child {
    flex-basis: 156px;
    transform: scale(1);
  }

  .category-photo {
    min-height: 140px;
  }

  .category-garment {
    width: 152%;
    height: auto;
    margin-top: -48px;
  }

  .category-long-sleeves .category-garment {
    width: 190%;
    margin-top: -78px;
  }

  .category-tees .category-garment {
    width: 142%;
    margin-top: -36px;
  }

  .category-label h3 {
    font-size: clamp(0.82rem, 4.2vw, 1.2rem);
  }

  .category-label span {
    margin-bottom: 3px;
    font-size: 0.55rem;
  }

  .category-count {
    font-size: 0.5rem;
  }

  .collection-copy h3 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .collection-arrow {
    top: 238px;
    display: grid;
    width: 36px;
    height: 36px;
    font-size: 1.7rem;
  }

  .collection-arrow.prev {
    left: 10px;
  }

  .collection-arrow.next {
    right: 10px;
  }

  .collection-copy {
    margin-top: 258px;
  }

  .product-photo.large {
    min-height: 118px;
  }

  .product-photo.large img {
    width: 106%;
    height: 106%;
  }

  .product-card h3 {
    font-size: clamp(0.62rem, 3vw, 0.9rem);
    line-height: 1.05;
  }

  .product-card p {
    margin-top: 4px;
    font-size: 0.62rem;
  }

  .newsletter {
    position: relative;
    z-index: 4;
    grid-template-columns: minmax(70px, 0.8fr) minmax(165px, 1.4fr) minmax(86px, 0.95fr);
    gap: 10px;
    align-items: center;
    padding: 28px 10px 18px;
  }

  .crown-note {
    width: 100%;
    aspect-ratio: 1;
  }

  .join-copy {
    width: 100%;
  }

  .newsletter h2 {
    font-size: clamp(1.7rem, 8.8vw, 2.8rem);
    line-height: 0.95;
    white-space: normal;
  }

  .newsletter p {
    margin: 8px 0 10px;
    font-size: 0.55rem;
    line-height: 1.45;
  }

  .newsletter form {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px;
    max-width: none;
  }

  .newsletter input {
    min-height: 31px;
    padding: 0 8px;
    border-width: 1px;
    font-size: 0.58rem;
  }

  .newsletter button {
    min-height: 31px;
    padding: 0 10px;
    font-size: 0.56rem;
  }

  .paper-logo {
    width: 100%;
    aspect-ratio: 1.3;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .search-panel {
    left: 10px;
    right: 10px;
    grid-template-columns: 1fr auto;
  }

  .search-panel button {
    padding: 0 10px;
    font-size: 0.62rem;
  }

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

  .item-grid .product-card {
    min-height: 230px;
  }

  .big-search,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-hero {
    padding: 44px 16px;
  }

  .search-results,
  .admin-grid {
    padding: 34px 12px;
  }

  .benefits {
    position: sticky;
    bottom: 0;
    grid-template-columns: repeat(3, 1fr);
    min-height: 28px;
    padding: 0;
    font-size: 0.48rem;
  }

  .drop-band .mini-card {
    min-width: 0;
  }
}
