:root {
  --yellow: #f4c542;
  --ink: #1a1a1a;
  --paper: #fffaf0;
  --muted: #6b6b6b;
  --line: #e6dfcf;
  --pink: #ff6fae;
  --teal: #2bb3a3;
  --blue: #4a7cff;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.center { display: grid; place-items: center; min-height: 100vh; text-align: center; }
a { color: inherit; }
img, svg { display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 4rem 1.25rem; }

/* header */
.topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.25rem;
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 800; letter-spacing: -.02em; font-size: 1.15rem; }
.mark { width: 32px; height: 32px; }
nav { display: flex; gap: 1.25rem; font-weight: 600; font-size: .95rem; }
nav a { text-decoration: none; }
nav a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* hero */
.hero { padding-top: 4rem; padding-bottom: 3rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.hero-art { position: relative; justify-self: center; max-width: 340px; width: 100%; }
.sticker {
  position: absolute; right: -18px; top: -18px; z-index: 2;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--pink); color: var(--ink); border: 3px solid var(--ink);
  display: grid; place-items: center; text-align: center;
  font-weight: 900; font-size: .8rem; line-height: 1.1; letter-spacing: .05em;
  transform: rotate(12deg); box-shadow: 4px 4px 0 var(--ink);
}
.eyebrow.dark { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.eyebrow {
  display: inline-block; margin: 0 0 1rem;
  padding: .3rem .7rem; border: 2px solid var(--ink); border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: #fff;
}
h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 900;
}
.lede { max-width: 42rem; font-size: 1.2rem; color: #333; margin: 0 0 2rem; }
.cta { display: flex; gap: .75rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: .9rem 1.5rem;
  background: var(--ink); color: #fff;
  border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 700; text-decoration: none;
  box-shadow: 4px 4px 0 var(--yellow);
  transition: transform .1s, box-shadow .1s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--yellow); }
.btn.ghost { background: #fff; color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn.ghost:hover { box-shadow: 6px 6px 0 var(--ink); }

.marquee {
  margin: 0; padding: .6rem 0;
  overflow: hidden; white-space: nowrap;
  background: var(--ink); color: var(--yellow);
  font-weight: 800; letter-spacing: .12em; font-size: .9rem;
}
.marquee span { display: inline-block; animation: scroll 28s linear infinite; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* sections */
.section-head { margin-bottom: 2rem; }
.section-head h2 { margin: 0 0 .35rem; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.03em; font-weight: 900; }
.section-head p { margin: 0; color: var(--muted); }

/* merch grid */
.grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.card {
  background: #fff;
  border: 2px solid var(--ink); border-radius: 16px;
  padding: 1rem;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex; flex-direction: column;
}
.thumb {
  aspect-ratio: 1; border-radius: 10px; margin-bottom: 1rem;
  display: grid; place-items: center;
  font-weight: 900; font-size: 1.6rem; letter-spacing: .1em; color: var(--ink);
  border: 2px dashed rgba(0,0,0,.25);
}
.thumb.tee    { background: var(--yellow); }
.thumb.cap    { background: var(--pink); }
.thumb.tote   { background: var(--teal); }
.thumb.stubby { background: var(--blue); color: #fff; }
.card h3 { margin: 0 0 .35rem; font-size: 1.15rem; letter-spacing: -.01em; }
.card p { margin: 0 0 1rem; color: #444; font-size: .95rem; flex: 1; }
.meta { display: flex; justify-content: space-between; align-items: center; }
.price { font-weight: 800; }
.tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .55rem; background: var(--yellow); border-radius: 999px; }

/* mockups */
.mock { aspect-ratio: 1; margin-bottom: 1rem; border-radius: 10px; overflow: hidden; border: 2px solid var(--line); background: #fbf3e3; }
.mock img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fabric { fill: #1a1a1a; }
.fabric.dark { fill: #0e0e0e; }
.seam { fill: none; stroke: #3a3a3a; stroke-width: 2; }
.handle { fill: none; stroke: #c9b78f; stroke-width: 14; stroke-linecap: round; }
.canvas { fill: #f1e9d6; stroke: #cbbd98; stroke-width: 3; }
.arc { fill: var(--yellow); font-weight: 800; letter-spacing: 2px; font-family: inherit; }
.ink-text { fill: #1a1a1a; font-family: inherit; }

/* polaroids */
.polaroid { margin: 0; background: #fff; padding: .6rem .6rem 0; border: 2px solid var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.polaroid img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.polaroid figcaption { padding: .6rem .2rem .7rem; font-size: .85rem; font-weight: 700; text-align: center; }
.polaroid.gif img { aspect-ratio: 3/4; }
.tilt-l { transform: rotate(-2.5deg); }
.tilt-r { transform: rotate(2.5deg); }
.polaroid:hover { transform: rotate(0) scale(1.02); transition: transform .15s; z-index: 1; }

/* mini polaroid in hero + faq gif */
.hero-art .mini { position: absolute; left: -84px; bottom: -36px; width: 150px; z-index: 3; padding: .4rem .4rem 0; }
.hero-art .mini img { aspect-ratio: 9/16; }
.hero-art .mini figcaption { font-size: .68rem; padding: .4rem .1rem .5rem; }
.faq .with-gif { display: flex; gap: 1.25rem; align-items: flex-start; }
.faq .with-gif img { width: 140px; height: auto; flex: none; border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); transform: rotate(-2deg); }

/* gif strip */
.gif-strip { position: relative; height: 300px; background: url("/img/party.gif") center / auto 100% repeat-x; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.strip-label {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%) rotate(-1.5deg);
  background: var(--yellow); color: var(--ink); border: 3px solid var(--ink); box-shadow: 5px 5px 0 var(--ink);
  padding: .5rem 1rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; white-space: nowrap;
}
.notify-box.has-gif { position: relative; overflow: hidden; background: var(--ink) url("/img/party.gif") center / cover; }
.notify-box.has-gif::before { content: ""; position: absolute; inset: 0; background: rgba(20,20,20,.82); }
.notify-box.has-gif > * { position: relative; }

/* print band */
.print-band { background: var(--ink); color: #fff; }
.print-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.print-art svg { width: 100%; max-width: 420px; display: block; margin: 0 auto; filter: drop-shadow(0 12px 30px rgba(0,0,0,.5)); }
.print-copy h2 { margin: 0 0 1rem; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.03em; font-weight: 900; }
.print-copy p { color: #ddd; }
.print-copy .small { font-size: .85rem; color: #aaa; }
.print-copy a { color: var(--yellow); }
.variants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 1rem; }
.toon-tee { margin: 1.25rem 0; display: grid; grid-template-columns: 180px 1fr; gap: 1rem; align-items: center; }
.toon-tee img { width: 100%; height: auto; border-radius: 12px; border: 2px solid #333; }
.toon-tee figcaption { font-size: .85rem; color: #bbb; }
.variants figure { margin: 0; text-align: center; }
.variants img { width: 100%; height: auto; border-radius: 50%; border: 3px solid #333; background: #111; }
.variants figcaption { margin-top: .5rem; font-size: .8rem; font-weight: 700; color: #eee; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 1.75rem; padding: .5rem; }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 1.75rem 1.5rem; } .gallery .polaroid figcaption { font-size: .8rem; } }

/* story */
.story .prose { max-width: 42rem; font-size: 1.1rem; }
.story .prose p { margin: 0 0 1rem; }
.note { color: var(--muted); font-style: italic; font-size: .95rem; border-left: 3px solid var(--yellow); padding-left: .75rem; }

/* notify */
.notify-box {
  background: var(--ink); color: #fff;
  border-radius: 20px; padding: 2.5rem;
  text-align: center;
}
.notify-box h2 { margin: 0 0 .5rem; font-size: clamp(1.5rem, 3.5vw, 2.2rem); letter-spacing: -.02em; }
.notify-box p { margin: 0 auto 1.5rem; max-width: 36rem; color: #ddd; }
.notify-box .btn { background: var(--yellow); color: var(--ink); border-color: var(--yellow); box-shadow: 4px 4px 0 #fff; }
.notify-box .btn:hover { box-shadow: 6px 6px 0 #fff; }

/* faq */
.faq { margin: 0; max-width: 42rem; }
.faq dt { font-weight: 800; margin-top: 1.25rem; }
.faq dd { margin: .25rem 0 0; color: #444; }

/* footer */
.foot { border-top: 2px solid var(--line); padding-top: 2rem; padding-bottom: 3rem; color: var(--muted); font-size: .9rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.foot p { margin: 0; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-art { max-width: 280px; }
  .hero-art .mini { left: auto; right: -22px; bottom: -34px; width: 96px; }
  .hero-art .mini figcaption { font-size: .6rem; }
  .print-inner { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; }
}
@media (max-width: 600px) {
  .gif-strip { height: 220px; }
  .strip-label { font-size: .7rem; white-space: normal; text-align: center; width: 80%; }
  .gallery { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .variants { gap: .6rem; }
  .toon-tee { grid-template-columns: 1fr; }
  nav { gap: .85rem; font-size: .85rem; }
  .brand span { display: none; }
  .wrap { padding: 3rem 1.25rem; }
  .notify-box { padding: 1.75rem 1.25rem; }
}
