/* ============================================================
   plemplem.com — COMIC POP-ART EDITION
   BOOM! POW! BANG! · Halbton + dicke Outlines
   ============================================================ */

:root {
  --ink:         #0a0a0a;
  --ink-soft:    #1a1a1a;
  --paper:       #fff8e8;
  --paper-2:     #ffedc2;
  --sky:         #7dd3f7;
  --sky-2:       #a9e4fb;
  --sky-deep:    #4fb5e0;
  --yellow:      #ffd500;
  --yellow-2:    #ffe766;
  --red:         #e3352b;
  --red-2:       #ff5a4e;
  --cyan:        #25c5f0;
  --green:       #4cc66f;
  --purple:      #5b2ea8;

  --display: "Bangers", "Luckiest Guy", "Archivo Black", ui-sans-serif, system-ui, sans-serif;
  --display-alt: "Archivo Black", ui-sans-serif, system-ui, sans-serif;
  --sans:    "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --marker:  "Permanent Marker", cursive;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.19, 1, 0.22, 1);

  --maxw: 1400px;
  --stroke: 3.5px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sky);
  background-image:
    radial-gradient(1200px 500px at 10% 0%, var(--sky-2) 0%, transparent 60%),
    radial-gradient(900px 500px at 90% 15%, var(--paper-2) 0%, transparent 55%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--yellow); color: var(--ink); }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width .3s var(--ease), height .3s var(--ease),
              background-color .3s var(--ease);
  mix-blend-mode: multiply;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
.cursor.is-hover {
  width: 72px; height: 72px;
  background: var(--red);
}
@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--yellow);
  z-index: 10001;
  display: grid;
  place-items: center;
  transition: opacity .7s var(--ease-slow), visibility .7s var(--ease-slow);
}
.loader__bolt {
  width: 90px;
  height: 112px;
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linejoin: miter;
  animation: zap 0.9s var(--ease) infinite;
}
@keyframes zap {
  0%, 100%   { transform: scale(1)   rotate(-6deg); }
  45%        { transform: scale(1.25) rotate(8deg); }
  90%        { transform: scale(.9)  rotate(-4deg); }
}
.loader.is-hidden { opacity: 0; visibility: hidden; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  color: var(--yellow);
  overflow: hidden;
  position: relative;
  z-index: 110;
  border-bottom: var(--stroke) solid var(--ink);
}
.ticker__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  padding: 12px 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .08em;
  animation: tick 35s linear infinite;
  width: max-content;
}
.ticker__track span { flex-shrink: 0; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 44px;
  left: 0; right: 0;
  z-index: 100;
  transition: top .4s var(--ease);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 3vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  margin-left: 3vw;
  margin-right: 3vw;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease);
}
.nav.is-scrolled .nav__inner { transform: translateY(-4px) scale(0.98); }

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
}
.nav__bolt {
  width: 26px;
  height: 32px;
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-width: 4;
  stroke-linejoin: miter;
  transition: transform .3s var(--ease);
}
.nav__brand:hover .nav__bolt { transform: rotate(-12deg) scale(1.15); }
.nav__word {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.nav__links a {
  position: relative;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--ink);
  padding: 6px 2px;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 4px;
  background: var(--red);
  transition: left .3s var(--ease), right .3s var(--ease);
}
.nav__links a:hover { color: var(--red); }
.nav__links a:hover::after { left: 0; right: 0; }

.nav__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-right: 4px;
  border: 3px solid var(--ink);
  background: var(--red);
  color: var(--paper);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: .04em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease);
  will-change: transform;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav__cta:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
}

/* ============================================================
   STICKERS (starburst badges)
   ============================================================ */
.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  pointer-events: none;
  filter: drop-shadow(4px 4px 0 var(--ink));
  transform: rotate(-8deg);
  animation: bounce 3.6s var(--ease-slow) infinite;
}
.sticker svg {
  width: 100%;
  height: 100%;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linejoin: miter;
}
.sticker span {
  position: absolute;
  font-family: var(--display);
  color: var(--ink);
  letter-spacing: .02em;
  text-align: center;
  line-height: .95;
  transform: rotate(4deg);
}
.sticker--yellow svg { fill: var(--yellow); }
.sticker--red    svg { fill: var(--red); }
.sticker--red    span { color: var(--paper); }
.sticker--cyan   svg { fill: var(--cyan); }
.sticker--green  svg { fill: var(--green); }
.sticker--white  svg { fill: var(--paper); }

@keyframes bounce {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-8deg) translateY(-6px); }
}

/* ============================================================
   Shared
   ============================================================ */
.section-head {
  padding: clamp(5rem, 10vw, 8rem) 3vw 3rem;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.section-head--split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
@media (max-width: 900px) { .section-head--split { grid-template-columns: 1fr; } }

.section-index {
  display: inline-block;
  font-family: var(--marker);
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 1rem;
  padding: 4px 14px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 999px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: .01em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
  -webkit-text-stroke: 0;
}
.section-title em {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Highlights */
.hl-yellow,
.hl-red,
.hl-cyan {
  display: inline-block;
  padding: 0 .25em;
  border: var(--stroke) solid var(--ink);
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--ink);
  line-height: 1;
  margin: 0 .1em;
}
.hl-yellow { background: var(--yellow); }
.hl-red    { background: var(--red); color: var(--paper); }
.hl-cyan   { background: var(--cyan); color: var(--ink); }

.section-lead {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 54ch;
  margin: 1.5rem 0 0;
  font-weight: 500;
}

/* ============================================================
   Speech bubble
   ============================================================ */
.bubble {
  position: relative;
  padding: 2.25rem 2rem 2.75rem;
  max-width: 460px;
}
.bubble__shape {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 3.5;
  stroke-linejoin: miter;
  z-index: 0;
  filter: drop-shadow(5px 5px 0 var(--ink));
}
.bubble p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.bubble p b { background: var(--yellow); padding: 0 .15em; box-shadow: 2px 2px 0 var(--ink); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: .04em;
  cursor: none;
  border: var(--stroke) solid var(--ink);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
  text-align: center;
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
}
.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}
.btn--yellow { background: var(--yellow); }
.btn--yellow:hover { background: var(--yellow-2); }
.btn--white  { background: var(--paper); }
.btn--red    { background: var(--red); color: var(--paper); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(9rem, 14vw, 12rem) 3vw 4rem;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(ellipse at 30% 20%, var(--sky-2) 0%, var(--sky) 55%, var(--sky-deep) 120%);
  border-bottom: var(--stroke) solid var(--ink);
}

.hero__halftone {
  position: absolute;
  inset: -20% -20% -60% -20%;
  z-index: 0;
  opacity: .22;
  mask-image: radial-gradient(circle at 50% 45%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, black 0%, transparent 70%);
}

.hero__boom {
  position: absolute;
  right: -8vw;
  top: 4vh;
  width: min(80vw, 1050px);
  height: auto;
  z-index: 0;
  filter: drop-shadow(8px 8px 0 var(--ink));
  will-change: transform;
}
.hero__boom svg {
  width: 100%;
  height: auto;
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linejoin: miter;
}

.hero__bolt {
  position: absolute;
  right: 8vw;
  top: 18vh;
  width: clamp(80px, 12vw, 180px);
  z-index: 1;
  filter: drop-shadow(5px 5px 0 var(--ink));
  will-change: transform;
}
.hero__bolt svg {
  width: 100%;
  height: auto;
  fill: var(--yellow);
  stroke: var(--ink);
  stroke-width: 4;
  stroke-linejoin: miter;
  overflow: visible;
}

.sticker--hero-big {
  top: 12vh;
  right: 4vw;
  width: clamp(120px, 16vw, 220px);
  height: clamp(120px, 16vw, 220px);
  z-index: 2;
}
.sticker--hero-big span {
  font-size: clamp(24px, 2.6vw, 38px);
}
.sticker--hero-pow {
  bottom: 28vh;
  right: 36vw;
  width: clamp(90px, 11vw, 150px);
  height: clamp(90px, 11vw, 150px);
  z-index: 2;
  transform: rotate(12deg);
  animation: bounce-alt 3.2s var(--ease-slow) infinite;
}
.sticker--hero-pow span {
  font-size: clamp(20px, 2.2vw, 32px);
}
@keyframes bounce-alt {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50%      { transform: rotate(12deg) translateY(-8px); }
}

.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  align-self: center;
  position: relative;
  z-index: 2;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 3px 3px 0 var(--ink);
}
.chip i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--ink);
}
.chip--white { background: var(--paper); color: var(--ink); }
.chip--black { background: var(--ink); color: var(--paper); }
.chip--black i { background: var(--yellow); }

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.85;
  letter-spacing: .005em;
  margin: 0 0 2rem;
  color: var(--ink);
  text-transform: uppercase;
  max-width: 13ch;
  text-shadow:
    4px 4px 0 var(--paper),
    5px 5px 0 var(--ink);
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(36px) rotate(-1deg);
  transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.hero__title .line.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(-1deg);
}
.hero__title .line:nth-child(2) { transform: translateY(36px) rotate(1deg); }
.hero__title .line:nth-child(2).is-visible { transform: translateY(0) rotate(1deg); }
.hero__title .line:nth-child(3) { transform: translateY(36px) rotate(-0.5deg); }
.hero__title .line:nth-child(3).is-visible { transform: translateY(0) rotate(-0.5deg); }

.hero__title .line--red {
  color: var(--red);
  text-shadow:
    4px 4px 0 var(--paper),
    5px 5px 0 var(--ink);
}
.hero__title .line__hl {
  background: var(--yellow);
  padding: 0 .15em;
  border: var(--stroke) solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  display: inline-block;
  text-shadow: none;
  transform: rotate(-2deg);
}
.hero__title .line__dash {
  position: relative;
  white-space: nowrap;
}
.hero__title .line__dash::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 46%;
  height: 10px;
  background: var(--red);
  transform: rotate(-4deg);
  z-index: -1;
  border-radius: 4px;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 2.5rem;
  max-width: 50ch;
  background: var(--paper);
  padding: 16px 22px;
  border: var(--stroke) solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  display: inline-block;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__foot {
  position: relative;
  z-index: 2;
  margin-top: clamp(4rem, 8vw, 6rem);
  max-width: var(--maxw);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: var(--stroke) solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: 18px;
  overflow: hidden;
}
.hero__foot-col {
  padding: 1.25rem 1.5rem;
  border-right: var(--stroke) solid var(--ink);
}
.hero__foot-col:last-child { border-right: 0; }
.hero__foot .kicker {
  display: block;
  font-family: var(--marker);
  font-size: 14px;
  color: var(--red);
  margin-bottom: 6px;
}
.hero__foot strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero__foot {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__foot-col:nth-child(2) { border-right: 0; }
  .hero__foot-col:nth-child(1),
  .hero__foot-col:nth-child(2) { border-bottom: var(--stroke) solid var(--ink); }
  .hero__boom { opacity: .55; right: -25vw; width: 130vw; }
}

/* ============================================================
   MANIFEST
   ============================================================ */
.manifest {
  padding-bottom: 6rem;
  background: var(--sky-2);
  border-bottom: var(--stroke) solid var(--ink);
  position: relative;
}
.sticker--manifest {
  position: absolute;
  top: 4rem;
  right: 6vw;
  width: 140px;
  height: 140px;
  transform: rotate(14deg);
}
.sticker--manifest span { font-size: 28px; color: var(--ink); }

.manifest__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.rule {
  padding: clamp(2rem, 3.5vw, 2.75rem);
  border: var(--stroke) solid var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: none;
  overflow: hidden;
}
.rule:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-lg);
}
.rule--yellow { background: var(--yellow); }
.rule--red    { background: var(--red);    color: var(--paper); }
.rule--cyan   { background: var(--cyan); }
.rule--green  { background: var(--green); }

.rule__num {
  display: inline-block;
  font-family: var(--display);
  font-size: 20px;
  padding: 4px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: .06em;
}
.rule h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--ink);
}
.rule--red h3 { color: var(--paper); }
.rule p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 44ch;
  font-weight: 500;
}
.rule--red p { color: var(--paper); }

.rule__zing {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--display);
  font-size: 28px;
  color: var(--ink);
  transform: rotate(10deg);
  background: var(--paper);
  padding: 2px 12px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}
.rule--yellow .rule__zing { background: var(--red); color: var(--paper); }
.rule--red    .rule__zing { background: var(--yellow); color: var(--ink); }
.rule--cyan   .rule__zing { background: var(--red); color: var(--paper); }
.rule--green  .rule__zing { background: var(--yellow); color: var(--ink); }

@media (max-width: 900px) {
  .manifest__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MERCH
   ============================================================ */
.merch {
  padding-bottom: 6rem;
  background: var(--paper);
  border-bottom: var(--stroke) solid var(--ink);
  position: relative;
}

.merch__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 320px 1fr;
  cursor: none;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.product:nth-child(2n) { transform: rotate(-0.8deg); }
.product:nth-child(3n) { transform: rotate(0.8deg); }
.product:hover {
  transform: translate(-4px, -4px) rotate(0);
  box-shadow: var(--shadow-lg);
}

.product__stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 40%, var(--yellow-2) 0%, var(--paper-2) 70%);
  border-bottom: var(--stroke) solid var(--ink);
}
.product:nth-child(2) .product__stage { background: radial-gradient(circle at 50% 40%, var(--sky-2) 0%, var(--sky) 80%); }
.product:nth-child(3) .product__stage { background: radial-gradient(circle at 50% 40%, #ffd2c9 0%, #ffb3a6 80%); }
.product:nth-child(4) .product__stage { background: radial-gradient(circle at 50% 40%, #cff2d8 0%, #a4e3b5 80%); }
.product:nth-child(5) .product__stage { background: radial-gradient(circle at 50% 40%, #e9d4ff 0%, #c9a9ff 80%); }
.product:nth-child(6) .product__stage { background: radial-gradient(circle at 50% 40%, var(--paper-2) 0%, #ffcf66 80%); }

.product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--ink);
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}
.product__shape {
  position: absolute;
  inset: 14%;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .6s var(--ease);
  will-change: transform;
}
.product:hover .product__shape { transform: translateY(-4px) rotate(-2deg); }

.product__sticker-burst {
  width: 88px;
  height: 88px;
  bottom: -10px;
  right: -10px;
  z-index: 4;
}
.product__sticker-burst span {
  font-size: 18px;
  line-height: 1;
  padding: 0 4px;
}

/* Product silhouettes — comic style */
.product__shape--stool {
  inset: 22% 28% 16% 28%;
  border-radius: 4px 4px 2px 2px;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 26%, transparent 26%, transparent 60%, var(--paper) 60%, var(--paper) 66%, transparent 66%),
    var(--ink);
}
.product__shape--bread {
  inset: 28% 18%;
  background: radial-gradient(ellipse at 50% 35%, #e6c088 0%, #b5823f 70%, #744c22 100%);
  border-radius: 50% 50% 48% 48% / 62% 62% 40% 40%;
}
.product__shape--helmet {
  inset: 22% 24%;
  background: radial-gradient(ellipse at 50% 30%, #f4f1e4 0%, #c9c2a8 70%, #807a68 100%);
  border-radius: 50% 50% 20% 20% / 68% 68% 32% 32%;
}
.product__shape--cup {
  inset: 18% 34%;
  background: linear-gradient(180deg, #dcb987 0%, #a37a3f 100%);
  border-radius: 6px 6px 12px 12px / 8px 8px 20px 20px;
}
.product__shape--shirt {
  inset: 18% 22% 14% 22%;
  background: var(--red);
  border-radius: 0;
  clip-path: polygon(22% 0, 40% 8%, 60% 8%, 78% 0, 100% 15%, 80% 35%, 80% 100%, 20% 100%, 20% 35%, 0 15%);
}
.product__shape--coffee {
  inset: 22% 30%;
  background:
    linear-gradient(180deg, var(--ink) 0%, #2a1d0f 100%);
  border-radius: 8px;
}

.product__body {
  padding: 1.75rem;
}
.product__body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
  color: var(--ink);
}
.product__body p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
}
.product__meta {
  display: inline-block;
  font-family: var(--marker);
  font-size: 14px;
  color: var(--ink);
  padding: 4px 12px;
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}

@media (max-width: 1100px) { .merch__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  {
  .merch__grid { grid-template-columns: 1fr; }
  .product { grid-template-rows: 280px 1fr; transform: none !important; }
}

.merch__foot {
  max-width: var(--maxw);
  margin: 4rem auto 0;
  padding: 2.5rem 3vw 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: center;
  border-top: var(--stroke) dashed var(--ink);
}
.merch__foot p {
  margin: 2.5rem 0 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  max-width: 44ch;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: 999px;
  padding: 6px;
  align-items: center;
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
}
.newsletter input {
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 20px;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  min-width: 0;
}
.newsletter input::placeholder { color: rgba(10, 10, 10, .4); }
.newsletter .newsletter__sent { display: none; }
.newsletter.sent input { opacity: .4; pointer-events: none; }
.newsletter.sent .newsletter__idle { display: none; }
.newsletter.sent .newsletter__sent { display: inline; }

@media (max-width: 800px) {
  .merch__foot { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; border-radius: 18px; }
}

/* ============================================================
   BANNER
   ============================================================ */
.banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(6rem, 12vw, 10rem) 3vw;
  background: var(--red);
  color: var(--paper);
  border-bottom: var(--stroke) solid var(--ink);
}
.banner__halftone {
  position: absolute;
  inset: 0;
  opacity: .25;
  mix-blend-mode: multiply;
}
.banner__sticker {
  top: 2rem;
  right: 5vw;
  width: clamp(110px, 14vw, 180px);
  height: clamp(110px, 14vw, 180px);
}
.banner__sticker span { font-size: clamp(18px, 2vw, 28px); color: var(--ink); }

.banner__content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.banner .section-index { background: var(--paper); color: var(--ink); }
.banner__quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: .005em;
  margin: 1.5rem 0 2rem;
  color: var(--paper);
  text-transform: uppercase;
  text-shadow: 3px 3px 0 var(--ink);
}
.banner__quote em {
  font-family: var(--sans);
  font-weight: 700;
  font-style: italic;
  color: var(--paper-2);
  text-transform: none;
  text-shadow: none;
}
.banner__quote .hl-red {
  background: var(--yellow);
  color: var(--ink);
  text-shadow: none;
}
.banner__content cite {
  display: inline-block;
  font-family: var(--marker);
  font-style: normal;
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--ink);
  background: var(--yellow);
  padding: 4px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}

/* ============================================================
   PORTFOLIO LIST
   ============================================================ */
.portfolio {
  padding-bottom: 6rem;
  background: var(--paper);
  border-bottom: var(--stroke) solid var(--ink);
}
.portfolio__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 3vw 3rem;
}

.portfolio__list {
  list-style: none;
  margin: 0 auto;
  padding: 0 3vw;
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.company {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  cursor: none;
  box-shadow: 5px 5px 0 var(--ink);
}
.company:nth-child(3n)   { background: var(--yellow); }
.company:nth-child(3n+1) { background: var(--sky-2); }
.company:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--ink);
}

.company__tag {
  display: inline-block;
  font-family: var(--marker);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 2.5px solid var(--ink);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.company:nth-child(3n+1) .company__tag { background: var(--paper); }
.company:nth-child(3n) .company__tag { background: var(--paper); }

.company h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
  color: var(--ink);
}
.company p {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}
.company__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.company__meta span {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--ink);
  padding: 4px 12px;
  background: var(--paper);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--ink);
}
.company__meta span:first-child {
  background: var(--red);
  color: var(--paper);
}
.company__link {
  margin-left: auto;
}

@media (max-width: 900px) { .portfolio__list { grid-template-columns: 1fr; } }

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  padding: 0 3vw 6rem;
  background: var(--sky);
  border-bottom: var(--stroke) solid var(--ink);
}
.numbers .section-head { padding-left: 0; padding-right: 0; }
.numbers__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stat {
  padding: 2rem;
  border: var(--stroke) solid var(--ink);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: none;
  box-shadow: var(--shadow);
}
.stat:hover {
  transform: translate(-4px, -4px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}
.stat--yellow { background: var(--yellow); }
.stat--red    { background: var(--red); color: var(--paper); }
.stat--cyan   { background: var(--cyan); }
.stat--green  { background: var(--green); }
.stat--white  { background: var(--paper); }

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 var(--paper);
}
.stat--red strong { text-shadow: 3px 3px 0 var(--ink); color: var(--paper); }
.stat__label {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.stat--red .stat__label { color: var(--paper); }
.stat__foot {
  display: block;
  font-family: var(--marker);
  font-size: 15px;
  color: var(--ink);
  opacity: .85;
}
.stat--red .stat__foot { color: var(--paper); opacity: .9; }

@media (max-width: 900px) { .numbers__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .numbers__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PEOPLE
   ============================================================ */
.people {
  padding-bottom: 6rem;
  background: var(--paper);
  border-bottom: var(--stroke) solid var(--ink);
}
.people__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.person {
  background: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow);
}
.person:nth-child(2) { transform: rotate(1.5deg); }
.person:nth-child(3) { transform: rotate(-1deg); }
.person:hover {
  transform: translate(-4px, -4px) rotate(0);
  box-shadow: var(--shadow-lg);
}
.person__portrait {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-bottom: var(--stroke) solid var(--ink);
  position: relative;
  filter: saturate(1.1) contrast(1.1);
}
.person__portrait--1 {
  background-image:
    linear-gradient(180deg, rgba(255,213,0,0.08), rgba(227,53,43,0.25)),
    url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=800&q=80");
}
.person__portrait--2 {
  background-image:
    linear-gradient(180deg, rgba(125,211,247,0.15), rgba(10,10,10,0.3)),
    url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=800&q=80");
}
.person__portrait--3 {
  background-image:
    linear-gradient(180deg, rgba(76,198,111,0.08), rgba(10,10,10,0.3)),
    url("https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=800&q=80");
}
.person__zing {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  background: var(--yellow);
  padding: 4px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.person__body {
  padding: 1.75rem;
}
.person__body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--ink);
}
.person__role {
  display: block;
  font-family: var(--marker);
  font-size: 15px;
  color: var(--red);
  margin-bottom: 1rem;
}
.person__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
@media (max-width: 900px) {
  .people__grid { grid-template-columns: 1fr; }
  .person { transform: none !important; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--yellow);
  color: var(--ink);
  padding: clamp(5rem, 10vw, 8rem) 3vw;
  position: relative;
  overflow: hidden;
  border-bottom: var(--stroke) solid var(--ink);
}
.contact__halftone {
  position: absolute;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.contact__sticker {
  top: 5%;
  right: 6%;
  width: clamp(110px, 14vw, 180px);
  height: clamp(110px, 14vw, 180px);
  z-index: 2;
}
.contact__sticker span { font-size: clamp(20px, 2vw, 30px); color: var(--paper); }

.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact .section-index { background: var(--paper); }
.contact__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: .005em;
  margin: 1.25rem 0 1.5rem;
  color: var(--ink);
  text-transform: uppercase;
  text-shadow: 4px 4px 0 var(--paper);
}
.contact__inner > p {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  max-width: 52ch;
  margin: 0 0 3rem;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.contact__card {
  display: block;
  padding: 1.75rem;
  background: var(--ink);
  color: var(--paper);
  border: var(--stroke) solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  cursor: none;
  will-change: transform;
}
.contact__card:nth-child(2) { background: var(--red); transform: rotate(-1deg); }
.contact__card:nth-child(3) { background: var(--paper); color: var(--ink); transform: rotate(1deg); }
.contact__card:hover {
  transform: translate(-4px, -4px) rotate(0);
  box-shadow: var(--shadow-lg);
}
.contact__kicker {
  display: inline-block;
  font-family: var(--marker);
  font-size: 15px;
  background: var(--yellow);
  color: var(--ink);
  padding: 3px 12px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.contact__card strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: inherit;
  margin-bottom: .75rem;
  word-break: break-word;
}
.contact__foot {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .02em;
  opacity: .7;
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { transform: none !important; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 3vw 2rem;
}
.foot__top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 3px dashed var(--paper);
}
.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.foot__bolt {
  width: 30px;
  height: 36px;
  fill: var(--yellow);
  stroke: var(--paper);
  stroke-width: 3;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.foot__cols strong {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.foot__cols p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--paper);
  line-height: 1.65;
  opacity: .8;
}
.foot__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--paper);
  opacity: .7;
  flex-wrap: wrap;
}
.foot__mark {
  font-family: var(--marker);
  font-size: 15px;
  color: var(--yellow);
  opacity: 1;
}

@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
  .foot__bottom { flex-direction: column; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .hero__title .line { opacity: 1; transform: none; }
}
