/* Catsco wholesale warehouse — retail signage, not a generic crypto kit */

:root {
  --red: #e31837;
  --red-dark: #b0102a;
  --blue: #005ba6;
  --blue-dark: #003e73;
  --yellow: #f5c400;
  --ink: #1c1917;
  --paper: #f4eee3;
  --paper-dark: #e7dcc8;
  --cardboard: #c4a574;
  --cardboard-dark: #8d6e42;
  --white: #fff;
  --line: #d4ccbc;
  --shadow: rgba(28, 25, 23, 0.16);
  --header-h: 6.75rem;
  --wrap: 72rem;
  --sign: "Oswald", "Arial Narrow", sans-serif;
  --display: "Bebas Neue", "Impact", sans-serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.5;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(141, 110, 66, 0.04) 11px,
      rgba(141, 110, 66, 0.04) 12px
    ),
    var(--paper);
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

.wrap {
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 200;
  padding: 0.5rem 0.85rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

/* Buttons — warehouse department signs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.45rem 1.05rem;
  border: 3px solid var(--ink);
  font-family: var(--sign);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn--xl {
  min-height: 3.15rem;
  padding: 0.7rem 1.35rem;
  font-size: 1.05rem;
}

.btn--compact {
  min-height: 2.45rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
}

.btn--buy {
  background: var(--red);
  color: var(--white);
  border-color: var(--red-dark);
  box-shadow: 4px 4px 0 var(--red-dark);
  font-size: 1.05rem;
}

.btn--chart {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue-dark);
  box-shadow: 4px 4px 0 var(--blue-dark);
}

.btn--x {
  background: var(--yellow);
  color: var(--ink);
  border-color: #c9a000;
  box-shadow: 4px 4px 0 #c9a000;
}

.btn--tg {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 3px 3px 0 var(--blue);
}

.btn--copy {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--yellow);
  flex-shrink: 0;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px) rotate(-0.4deg);
  box-shadow: 6px 6px 0 currentColor;
  filter: brightness(1.05);
}

.btn--buy:hover,
.btn--buy:focus-visible {
  box-shadow: 6px 6px 0 var(--red-dark);
}

.btn--chart:hover,
.btn--chart:focus-visible {
  box-shadow: 6px 6px 0 var(--blue-dark);
}

.btn:active {
  transform: translate(1px, 1px) scale(0.98);
  box-shadow: 1px 1px 0 var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--white);
  border-bottom: 4px solid var(--red);
  box-shadow: 0 8px 24px var(--shadow);
}

.utility-bar {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.utility-bar__text {
  margin: 0;
  padding: 0.28rem 1rem;
  font-family: var(--sign);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--wrap));
  margin-inline: auto;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
}

.brand__logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0;
  flex-shrink: 0;
  display: block;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--red);
}

.brand__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: baseline;
  font-family: var(--sign);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__ticker {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 3px solid var(--blue);
}

.brand__chain {
  color: #5c564c;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.header-mobile-tools,
.nav-mobile {
  display: none;
}

.menu-toggle {
  min-height: 2.45rem;
  padding: 0.4rem 0.75rem;
  border: 3px solid var(--ink);
  background: var(--paper);
  font-family: var(--sign);
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-mobile {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  width: min(calc(100% - 2rem), var(--wrap));
  margin: 0 auto 0.85rem;
}

/* Marquee */
.marquee {
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__copy {
  padding: 0.45rem 0;
  font-family: var(--sign);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem) 0 2.5rem;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 13px,
      rgba(141, 110, 66, 0.07) 13px,
      rgba(141, 110, 66, 0.07) 14px
    ),
    linear-gradient(180deg, #fbf7ee 0%, #f0e6d2 72%, #d9c7a3 100%);
  overflow-x: clip;
}

.hero__floor {
  pointer-events: none;
  position: absolute;
  inset: auto 0 0;
  height: 5.5rem;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--yellow) 0 14px,
      var(--ink) 14px 22px
    );
  clip-path: polygon(0 55%, 100% 18%, 100% 100%, 0 100%);
  opacity: 0.9;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__copy {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.65rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--sign);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 7.2vw, 7rem);
  line-height: 0.82;
  letter-spacing: 0.02em;
  color: var(--blue);
}

.hero__title span {
  display: block;
}

.hero__lede {
  max-width: 28rem;
  margin-top: 1.1rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
}

.bulk-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 1.12rem;
}

.bulk-list li {
  padding-left: 1.15rem;
  position: relative;
}

.bulk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red);
}

.hero__chants {
  display: flex;
  flex-direction: column;
  margin-top: 1.15rem;
  font-family: var(--sign);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-width: 0;
}

@media (min-width: 1025px) {
  .hero__art {
    margin-top: -1.25rem;
    margin-bottom: -2.75rem;
  }
}

.hero__mascot {
  position: relative;
  z-index: 2;
  width: min(100%, 34rem);
  max-height: 38rem;
  object-fit: contain;
  background: none;
  filter: drop-shadow(0 28px 18px rgba(28, 25, 23, 0.35));
  animation: mascot-float 4.2s ease-in-out infinite;
  transform-origin: 55% 80%;
  will-change: transform;
}

.hero__mascot:hover {
  animation-play-state: paused;
  transform: rotate(-3deg) scale(1.03);
}

.hero__pallet {
  pointer-events: none;
  position: absolute;
  bottom: 6%;
  left: 12%;
  right: 12%;
  height: 2.4rem;
  z-index: 1;
  background:
    repeating-linear-gradient(
      90deg,
      #b08955 0 18%,
      #8d6e42 18% 22%
    );
  box-shadow: 0 10px 0 #6f542f;
  transform: perspective(120px) rotateX(18deg);
}

/* SKU / CA */
.sku-card {
  position: relative;
  z-index: 3;
  margin-top: 0.75rem;
  padding: 0.9rem 1rem 1rem;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.sku-card__label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  margin-bottom: 0.55rem;
}

.sku-card__kicker,
.sku-card__aisle {
  font-family: var(--sign);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.sku-card__aisle {
  color: var(--red);
}

.sku-card__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.sku-card__ca {
  flex: 1 1 12rem;
  min-width: 0;
  font-family: var(--mono);
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sku-card__feedback {
  min-height: 1.2em;
  margin-top: 0.4rem;
  font-family: var(--sign);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
}

/* Aisles */
.aisles {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: #ece4d4;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-kicker {
  font-family: var(--sign);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--red);
}

.section-head h2,
.manifesto__sign h2,
.club h2,
.community h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.section-sub {
  margin-top: 0.4rem;
  max-width: 36rem;
  color: #4a453d;
}

.aisle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.aisle-sign {
  position: relative;
  padding: 0.2rem 0 0;
  text-align: center;
  transform-origin: 50% 0;
}

.aisle-sign__hooks {
  height: 1.15rem;
  margin-bottom: 0.15rem;
  background:
    radial-gradient(circle at 30% 40%, #9aa0a6 0 0.22rem, transparent 0.24rem),
    radial-gradient(circle at 70% 40%, #9aa0a6 0 0.22rem, transparent 0.24rem),
    linear-gradient(#b8bec4, #b8bec4) 30% 0 / 2px 100% no-repeat,
    linear-gradient(#b8bec4, #b8bec4) 70% 0 / 2px 100% no-repeat;
}

.aisle-sign__num {
  margin: 0;
  padding: 0.4rem 0.4rem 0.28rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--sign);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  transform-origin: 50% 0;
  animation: sign-wobble 3.6s ease-in-out infinite;
}

.aisle-sign__name {
  margin: 0;
  padding: 0.85rem 0.55rem 0.35rem;
  background: var(--white);
  border-left: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  font-family: var(--sign);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.aisle-sign__tag {
  margin: 0;
  padding: 0.35rem 0.5rem 0.55rem;
  background: var(--blue);
  color: var(--white);
  border: 3px solid var(--ink);
  border-top: 0;
  font-family: var(--sign);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.aisle-sign:nth-child(even) .aisle-sign__num {
  animation-duration: 4.2s;
  animation-direction: reverse;
}

@keyframes sign-wobble {
  0%, 100% { transform: rotate(-1.1deg); }
  50% { transform: rotate(1.2deg); }
}

/* Billboard */
.billboard {
  padding: 0 0 2.5rem;
  background: var(--ink);
}

.billboard__frame {
  border-top: 10px solid var(--red);
  border-bottom: 10px solid var(--red);
  background: #111;
}

.billboard__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.billboard__caption {
  margin-top: 1.15rem;
  padding: 0.75rem 1rem;
  background: var(--cardboard);
  color: var(--ink);
  font-family: var(--sign);
  font-size: clamp(1rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: inset 0 0 0 3px rgba(141, 110, 66, 0.45);
}

/* Manifesto */
.manifesto {
  padding: clamp(2.75rem, 6vw, 4.75rem) 0;
  background: var(--white);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
}

.manifesto__copy {
  display: grid;
  gap: 1rem;
  font-size: 1.15rem;
}

.manifesto__pair,
.manifesto__punch {
  font-family: var(--sign);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--blue);
}

.manifesto__punch {
  color: var(--red);
}

.disclaimer {
  font-size: 0.92rem;
  color: #5c564c;
}

/* Price check / Dex */
.price-check {
  padding: clamp(2.5rem, 6vw, 4.25rem) 0;
  background:
    linear-gradient(180deg, #1f1c19 0%, #2b2723 100%);
  color: var(--white);
}

.section-head--light .section-kicker {
  color: var(--yellow);
}

.section-head--light .section-sub {
  color: #d7cbb8;
}

.register {
  border: 4px solid #4a453d;
  background: #111;
  box-shadow: 0 18px 0 #0a0908;
}

.register__bezel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  background: #2a2622;
  border-bottom: 3px solid #4a453d;
}

.register__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #3dcc6f;
  box-shadow: 0 0 0 3px #1d5c32;
}

.register__name {
  flex: 1 1 auto;
  font-family: var(--sign);
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.dex-chart-wrap {
  width: 100%;
  overflow: hidden;
}

#dexEmbed {
  display: block;
  width: 100%;
  height: clamp(480px, 65vw, 720px);
  border: 0;
}

/* How to shop */
.howto {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  background: var(--paper-dark);
}

.stations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.station {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}

.station__num {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 0.8;
  color: var(--red);
}

.station h3 {
  font-family: var(--sign);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

.station p {
  margin-top: 0.25rem;
  color: #4a453d;
}

.howto__cta {
  margin-top: 1.5rem;
}

/* Membership + receipt */
.club {
  padding: clamp(2.75rem, 6vw, 4.75rem) 0 3rem;
  background:
    repeating-linear-gradient(
      90deg,
      #efe4cf,
      #efe4cf 40px,
      #eadcc4 40px,
      #eadcc4 42px
    );
}

.club__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.member-card {
  margin-top: 1.15rem;
  max-width: 26rem;
  overflow: hidden;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--blue);
  min-height: 15.5rem;
  display: flex;
  flex-direction: column;
}

.member-card__mag {
  height: 1.35rem;
  background: linear-gradient(#1c1c1c, #3a3a3a 40%, #111);
}

.member-card__top {
  padding: 0.7rem 1rem 0.5rem;
  background: var(--red);
  color: var(--white);
}

.member-card__brand {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 0.9;
}

.member-card__club {
  font-family: var(--sign);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}

.member-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.8rem 1rem 0.9rem;
}

.member-card__dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}

.member-card__dl dt {
  font-family: var(--sign);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--blue);
}

.member-card__dl dd {
  font-family: var(--sign);
  font-size: 0.95rem;
  font-weight: 700;
}

.member-card__barcode {
  height: 2.1rem;
  background: repeating-linear-gradient(
    90deg,
    #111 0 2px,
    transparent 2px 4px,
    #111 4px 5px,
    transparent 5px 8px,
    #111 8px 11px,
    transparent 11px 13px
  );
}

.printer {
  margin-top: 1.15rem;
  max-width: 22rem;
}

.printer__slot {
  height: 0.85rem;
  background: #2a2622;
  border: 3px solid var(--ink);
  box-shadow: inset 0 -6px 0 #111;
}

.receipt {
  margin: 0 auto;
  padding: 1.15rem 1.05rem 1.3rem;
  width: 100%;
  background:
    repeating-linear-gradient(
      180deg,
      #fffdf6,
      #fffdf6 14px,
      #f7f1e3 14px,
      #f7f1e3 15px
    );
  color: #222;
  font-family: var(--mono);
  font-size: 0.82rem;
  box-shadow: 0 16px 24px var(--shadow);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 10px),
    96% 100%,
    92% calc(100% - 10px),
    88% 100%,
    84% calc(100% - 10px),
    80% 100%,
    76% calc(100% - 10px),
    72% 100%,
    68% calc(100% - 10px),
    64% 100%,
    60% calc(100% - 10px),
    56% 100%,
    52% calc(100% - 10px),
    48% 100%,
    44% calc(100% - 10px),
    40% 100%,
    36% calc(100% - 10px),
    32% 100%,
    28% calc(100% - 10px),
    24% 100%,
    20% calc(100% - 10px),
    16% 100%,
    12% calc(100% - 10px),
    8% 100%,
    4% calc(100% - 10px),
    0 100%
  );
  transform-origin: 50% 0;
}

.receipt p {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.receipt__store,
.receipt__total {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.receipt__dash {
  display: block;
  text-align: center;
  letter-spacing: 0.04em;
}

.receipt__thanks {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.68rem;
}

.motion .receipt.is-printing {
  animation: receipt-print 1.1s ease-out both;
}

@keyframes receipt-print {
  from {
    opacity: 0;
    transform: translateY(-24px) scaleY(0.15);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* Community */
.community {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--red);
  color: var(--white);
  text-align: center;
}

.community__hours {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.7rem;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--sign);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.community h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.community__lede {
  max-width: 34rem;
  margin: 0.8rem auto 0;
  font-size: 1.15rem;
}

.community__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.wobble-sign {
  animation: sign-wobble 2.8s ease-in-out infinite;
}

/* Footer */
.site-footer {
  padding: 1.4rem 0 1.7rem;
  background: var(--ink);
  color: #d7cbb8;
}

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

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer__logo {
  width: 2.6rem;
  height: 2.6rem;
  display: block;
}

.footer__name {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.footer__meta {
  font-family: var(--sign);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  font-family: var(--sign);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__nav a {
  color: var(--yellow);
  text-decoration: none;
}

.footer__nav a:hover,
.footer__nav a:focus-visible {
  color: var(--white);
}

.disclaimer--footer {
  margin-top: 1rem;
  color: #a79b88;
}

/* Motion system */
@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.motion .reveal-hero {
  opacity: 0;
  transform: translateX(-28px);
  animation: hero-in 0.7s ease forwards;
}

.motion .reveal-hero:nth-child(1) { animation-delay: 0.05s; }
.hero__title .reveal-hero:nth-child(1) { animation-delay: 0.12s; }
.hero__title .reveal-hero:nth-child(2) { animation-delay: 0.22s; }
.motion .hero__lede { animation-delay: 0.32s; }
.bulk-list .reveal-hero:nth-child(1) { animation-delay: 0.4s; }
.bulk-list .reveal-hero:nth-child(2) { animation-delay: 0.48s; }
.bulk-list .reveal-hero:nth-child(3) { animation-delay: 0.56s; }
.bulk-list .reveal-hero:nth-child(4) { animation-delay: 0.64s; }
.hero__chants .reveal-hero:nth-child(1) { animation-delay: 0.72s; }
.hero__chants .reveal-hero:nth-child(2) { animation-delay: 0.8s; }
.hero__chants .reveal-hero:nth-child(3) { animation-delay: 0.88s; }
.motion .hero__ctas { animation-delay: 0.96s; }

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.motion .aisle-reveal {
  opacity: 0;
  transform: translateY(-36px) rotate(-5deg);
}

.motion .aisle-reveal.is-in {
  animation: aisle-drop 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.15) forwards;
}

.aisle-grid .aisle-reveal:nth-child(2) { animation-delay: 0.08s; }
.aisle-grid .aisle-reveal:nth-child(3) { animation-delay: 0.16s; }
.aisle-grid .aisle-reveal:nth-child(4) { animation-delay: 0.24s; }
.aisle-grid .aisle-reveal:nth-child(5) { animation-delay: 0.32s; }
.motion .station-reveal {
  opacity: 0;
  transform: translateX(-22px);
}

.motion .station-reveal.is-in {
  animation: station-slide 0.55s ease forwards;
}

.stations .station-reveal:nth-child(2) { animation-delay: 0.08s; }
.stations .station-reveal:nth-child(3) { animation-delay: 0.16s; }
.stations .station-reveal:nth-child(4) { animation-delay: 0.24s; }

@keyframes station-slide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes aisle-drop {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.motion .hero {
  animation: kraft-shift 22s linear infinite;
}

@keyframes kraft-shift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 28px 0, 0 0; }
}

/* Breakpoints */
@media (max-width: 1200px) {
  .aisle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__mascot {
    max-height: 32rem;
  }
}

@media (max-width: 1024px) {
  .hero__grid,
  .manifesto__grid,
  .club__grid {
    grid-template-columns: 1fr;
  }

  .hero__art {
    order: -1;
  }

  .hero__mascot {
    width: min(100%, 26rem);
    max-height: 28rem;
  }

  .hero__title {
    font-size: clamp(3.4rem, 12vw, 6.2rem);
  }

  .nav-desktop {
    gap: 0.4rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .header-mobile-tools {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
  }

  .nav-mobile:not([hidden]) {
    display: grid;
  }

  .brand__logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand__name {
    font-size: 1.7rem;
  }

  .brand__chain {
    display: none;
  }

  .aisle-grid,
  .stations {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.1rem;
  }

  .hero__ctas .btn,
  .community__btns .btn,
  .nav-mobile .btn {
    flex: 1 1 9rem;
  }

  .member-card,
  .printer {
    max-width: none;
  }

  .utility-bar__text {
    font-size: 0.64rem;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: min(calc(100% - 1.25rem), var(--wrap));
  }

  .btn {
    min-height: 2.9rem;
  }

  .hero__mascot {
    width: min(100%, 20.5rem);
    max-height: 22rem;
  }

  .sku-card {
    box-shadow: 4px 4px 0 var(--ink);
  }

  .sku-card__row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--copy {
    width: 100%;
  }

  .footer__nav {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand__logo {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero__chants {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .brand__name {
    font-size: 1.45rem;
  }

  .menu-toggle {
    padding-inline: 0.5rem;
    letter-spacing: 0.04em;
  }

  .hero__title {
    font-size: 3.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .motion .reveal-hero,
  .motion .aisle-reveal,
  .motion .station-reveal {
    opacity: 1;
    transform: none;
  }

  .hero__mascot:hover {
    transform: none;
  }
}