/* ============================================================
   Spice Cards — coming soon
   Palette + type straight from the v1 brand sheet.
   ============================================================ */
:root {
  --ink:    #0B0B0A;   /* wordmark, text, outline   */
  --ink-2:  #161514;
  --chili:  #E6341C;   /* accent / character only    */
  --flame:  #F05A24;
  --cream:  #F2EDE4;   /* main background            */
  --bone:   #FFF8EF;   /* inputs, highlights         */
  --gray:   #6D6862;   /* muted text, texture        */

  --display: "Carter One", "Cooper Black", Georgia, serif;
  --head:    "Anton", "Archivo Black", Impact, sans-serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;

  --edge: 2px solid var(--ink);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

/* coming-soon variants (/soon, /mascot, /minimal) center a single block */
body.center {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
}

/* distressed paper grain — kept low so type stays crisp */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}

/* soft warm vignette under everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(110% 80% at 50% 28%, #fbf7f0 0%, var(--cream) 52%, #e9e2d6 100%);
}

/* ─────────────── layout ─────────────── */
.wrap {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wordmark {
  width: min(72%, 340px);
  height: auto;
  margin-bottom: clamp(2.25rem, 7vw, 3.75rem);
}

/* hero: stacked on phones, side-by-side on wider screens */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.5rem, 3vw, 1.5rem);
  width: 100%;
}

.mascot {
  width: clamp(150px, 40vw, 205px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 16px 18px rgba(11, 11, 10, 0.22));
  transform-origin: bottom center;
  animation: bob 5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-12px) rotate(1.5deg); }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (min-width: 760px) {
  .hero {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: clamp(2rem, 5vw, 4rem);
  }
  .mascot { width: clamp(220px, 28vw, 300px); }
  .hero .content { align-items: flex-start; }
}

/* main page (no mascot): give the wordmark a little more presence */
.wrap--plain .wordmark { width: min(82%, 420px); }

/* lockup page: full mascot + wordmark graphic as the hero */
.lockup-hero {
  width: min(90%, 460px);
  height: auto;
  margin-bottom: clamp(1.5rem, 5vw, 2.75rem);
  filter: drop-shadow(0 18px 22px rgba(11, 11, 10, 0.18));
}

/* ─────────────── type ─────────────── */
.title {
  font-family: var(--head);
  font-weight: 400;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 clamp(1.4rem, 4vw, 2rem);
}

/* ─────────────── signup ─────────────── */
.signup {
  width: 100%;
  max-width: 430px;
}

.signup__label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.signup__row {
  display: flex;
  gap: 0.5rem;
  background: var(--bone);
  border: var(--edge);
  border-radius: 14px;
  padding: 5px;
  box-shadow: 4px 5px 0 var(--ink);
}

.signup__email {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  padding: 0.7rem 0.65rem;
}
.signup__email::placeholder { color: #a9a39b; }
.signup__email:focus { outline: none; }

.signup__btn {
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  background: var(--chili);
  color: var(--bone);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.7rem 1.15rem;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.signup__btn:hover { background: var(--flame); transform: translateY(-1px); }
.signup__btn:active { transform: translateY(1px); }

.signup__fine {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--gray);
}

.signup__msg {
  margin-top: 0.6rem;
  min-height: 1.2em;
  font-size: 0.9rem;
  font-weight: 600;
}
.signup__msg[data-state="ok"]  { color: #2e7d32; }
.signup__msg[data-state="err"] { color: var(--chili); }

/* focus-visible everywhere */
:focus-visible {
  outline: 3px solid var(--flame);
  outline-offset: 2px;
  border-radius: 4px;
}
.signup__row:focus-within {
  outline: 3px solid var(--flame);
  outline-offset: 2px;
}

/* ─────────────── meta (location + social) ─────────────── */
.meta {
  margin-top: clamp(1.5rem, 5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

@media (min-width: 760px) {
  .meta {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
  }
}

.meta__loc {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--gray);
  text-decoration: none;
  max-width: 36ch;
  text-align: center;
  line-height: 1.45;
  transition: color 0.12s ease;
}
a.meta__loc:hover { color: var(--chili); text-decoration: underline; }

.meta__social {
  display: flex;
  gap: 0.85rem;
}
.meta__social a {
  color: var(--ink);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: var(--edge);
  border-radius: 50%;
  background: var(--bone);
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.meta__social a:hover {
  background: var(--chili);
  color: var(--bone);
  transform: translateY(-2px);
}

/* ─────────────── motion / a11y ─────────────── */
@media (prefers-reduced-motion: reduce) {
  .mascot { animation: none; transform: rotate(-1.5deg); }
  * { transition: none !important; }
}

/* ============================================================
   v2 — store preview (long multi-section page)
   ============================================================ */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.wrapx { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 2rem); }
[id] { scroll-margin-top: 84px; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(242, 237, 228, 0.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}
.nav__inner { max-width: 1180px; margin: 0 auto; padding: 0.55rem clamp(1rem, 4vw, 1.6rem); display: flex; align-items: center; gap: 1rem; }
.nav__brand { display: inline-flex; }
.nav__brand img { height: 28px; width: auto; }
.nav__links { display: none; gap: 1.4rem; margin-left: auto; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.nav__links a:hover { color: var(--chili); }
.nav__right { display: flex; align-items: center; gap: 0.7rem; margin-left: auto; }
.nav__ig { color: var(--ink); display: inline-flex; }
.nav__ig:hover { color: var(--chili); }
.nav__cta {
  font-family: var(--display); font-size: 0.88rem;
  background: var(--chili); color: var(--bone); text-decoration: none;
  padding: 0.45rem 0.9rem; border-radius: 9px; border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}
.nav__cta:hover { background: var(--flame); }
@media (min-width: 820px) { .nav__links { display: flex; } .nav__right { margin-left: 0; } }

/* kicker */
.kicker { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; color: var(--chili); margin-bottom: 0.6rem; }
.live { color: var(--chili); animation: blink 1.4s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

/* hero */
.lead { text-align: center; max-width: 640px; margin: 0 auto; padding: clamp(2rem,6vw,3.5rem) clamp(1.2rem,5vw,2rem) clamp(2.5rem,7vw,4.5rem); display: flex; flex-direction: column; align-items: center; }
.lead__art { width: min(86%, 460px); height: auto; margin-bottom: clamp(1rem,4vw,1.8rem); filter: drop-shadow(0 18px 22px rgba(11,11,10,.18)); }
.lead__title { font-family: var(--head); font-weight: 400; text-transform: uppercase; font-size: clamp(2.4rem,8vw,3.6rem); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 0.9rem; }
.lead__sub { color: var(--gray); max-width: 42ch; margin: 0 auto 1.6rem; font-size: clamp(1rem,3vw,1.08rem); }
.lead__scroll { margin-top: 1.4rem; color: var(--gray); text-decoration: none; font-size: 0.86rem; font-weight: 600; }
.lead__scroll:hover { color: var(--chili); }

/* generic band */
.band { padding: clamp(3rem,8vw,5rem) 0; border-top: 2px solid var(--ink); }
.band--alt { background: #ece5d8; }
.band__title { font-family: var(--head); font-weight: 400; text-transform: uppercase; font-size: clamp(1.8rem,5.5vw,2.8rem); line-height: 1; letter-spacing: 0.01em; }
.band__sub { color: var(--gray); margin-top: 0.7rem; max-width: 48ch; }

/* category tiles */
.cats { list-style: none; display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.8rem 0 0; padding: 0; }
.cat { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--display); font-size: 1rem; background: var(--bone); border: 2px solid var(--ink); border-radius: 999px; padding: 0.55rem 1.05rem; box-shadow: 3px 3px 0 var(--ink); transition: transform .12s ease, box-shadow .12s ease; }
.cat:hover { transform: translate(-1px,-1px); box-shadow: 4px 5px 0 var(--ink); }
.cat__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--chili); }

/* drops / packs */
.drops { margin-top: 2.6rem; }
.drops__label { font-family: var(--display); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.74rem; color: var(--gray); margin-bottom: 0.9rem; }
.drops__row { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.9rem; }
.pack { position: relative; aspect-ratio: 3/4; border: 2px solid var(--ink); border-radius: 14px; background: linear-gradient(150deg,#1c1b1a,#2c2a28); color: var(--bone); box-shadow: 4px 5px 0 var(--ink); overflow: hidden; display: flex; align-items: flex-end; padding: 0.9rem; }
.pack::before { content:""; position:absolute; inset:0; background: linear-gradient(115deg, transparent 35%, rgba(255,248,239,.16) 48%, transparent 60%); }
.pack::after { content:"🌶️"; position:absolute; top:0.55rem; right:0.7rem; font-size:1.05rem; }
.pack--b { background: linear-gradient(150deg,#8e1f10,#E6341C); }
.pack--c { background: linear-gradient(150deg,#2c2a28,#6D6862); }
.pack--d { background: linear-gradient(150deg,#E6341C,#F05A24); }
.pack__game { font-family: var(--display); font-size: 1.05rem; }
.pack__soon { position: absolute; top: 0.7rem; left: 0.7rem; font-size: 0.64rem; font-weight: 600; background: var(--bone); color: var(--ink); border-radius: 999px; padding: 0.14rem 0.5rem; }
@media (min-width: 720px) { .drops__row { grid-template-columns: repeat(4,1fr); } }

/* two ways */
.ways { display: grid; gap: 1.1rem; margin-top: 1.8rem; grid-template-columns: 1fr; }
.way { position: relative; background: var(--bone); border: 2px solid var(--ink); border-radius: 18px; padding: clamp(1.4rem,4vw,2.2rem); box-shadow: 5px 6px 0 var(--ink); overflow: hidden; }
.way__icon { color: var(--ink); margin-bottom: 0.8rem; }
.way__tag { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; border: 2px solid var(--ink); border-radius: 999px; padding: 0.15rem 0.6rem; margin-bottom: 0.7rem; }
.way__tag--red { background: var(--chili); color: var(--bone); border-color: var(--chili); }
.way__h { font-family: var(--head); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; letter-spacing: 0.01em; }
.way__p { color: var(--gray); margin-top: 0.5rem; max-width: 38ch; }
.way__link { display: inline-block; margin-top: 1rem; color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--chili); padding-bottom: 1px; }
.way__link:hover { color: var(--chili); }
.way__mascot { position: absolute; right: -8px; bottom: -8px; width: 118px; pointer-events: none; }
@media (min-width: 760px) { .ways { grid-template-columns: 1fr 1fr; } }

/* rip & ship — bold black stage */
.stage { background: var(--ink); color: var(--bone); padding: clamp(3rem,8vw,5.5rem) 0; border-top: 2px solid var(--ink); }
.stage__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.stage__title { font-family: var(--head); font-weight: 400; text-transform: uppercase; font-size: clamp(2.4rem,7vw,4rem); line-height: 0.95; }
.stage__p { color: #cfc9c0; max-width: 46ch; margin: 0.8rem auto 0; }
.stage__cta { display: inline-block; margin-top: 1.4rem; font-family: var(--display); background: var(--chili); color: var(--bone); text-decoration: none; padding: 0.7rem 1.3rem; border-radius: 10px; border: 2px solid var(--bone); }
.stage__cta:hover { background: var(--flame); }
.stage__mascot { width: clamp(150px,30vw,230px); height: auto; }
@media (min-width: 760px) {
  .stage__inner { flex-direction: row; justify-content: space-between; text-align: left; gap: 2rem; }
  .stage__text { max-width: 60%; }
  .stage__p { margin-left: 0; }
}

/* events */
.events { display: grid; gap: 1rem; margin-top: 1.8rem; grid-template-columns: 1fr; }
.event { background: var(--bone); border: 2px solid var(--ink); border-radius: 16px; padding: 1.4rem; box-shadow: 4px 5px 0 var(--ink); }
.event__n { font-family: var(--head); font-size: 1.6rem; color: var(--chili); }
.event h3 { font-family: var(--display); font-size: 1.2rem; margin: 0.3rem 0 0.4rem; }
.event p { color: var(--gray); font-size: 0.95rem; }
@media (min-width: 720px) { .events { grid-template-columns: repeat(3,1fr); } }

/* final CTA */
.cta-band { background: var(--chili); color: var(--bone); padding: clamp(3rem,8vw,5rem) 0; border-top: 2px solid var(--ink); text-align: center; }
.cta-band__inner { display: flex; flex-direction: column; align-items: center; }
.cta-band__title { font-family: var(--head); font-weight: 400; text-transform: uppercase; font-size: clamp(2rem,6vw,3rem); }
.cta-band__sub { margin: 0.6rem 0 1.4rem; max-width: 44ch; }
.cta-band .signup__row { box-shadow: 4px 5px 0 var(--ink); }
.cta-band .signup__btn { background: var(--ink); }
.cta-band .signup__btn:hover { background: var(--ink-2); }
.cta-band .signup__msg { color: var(--bone); }

/* footer */
.site-foot { background: var(--cream); border-top: 2px solid var(--ink); padding: clamp(2rem,5vw,3rem) clamp(1.2rem,5vw,2rem); text-align: center; }
.site-foot__mark { width: 190px; height: auto; margin-bottom: 1.1rem; }
.site-foot__row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; justify-content: center; align-items: center; font-size: 0.85rem; color: var(--gray); }
.site-foot__row a { color: var(--gray); text-decoration: none; }
.site-foot__row a:hover { color: var(--chili); }

/* category logo grid */
.logos { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.9rem; margin: 1.8rem 0 0; padding: 0; }
.logo-tile { background: var(--bone); border: 2px solid var(--ink); border-radius: 16px; box-shadow: 4px 5px 0 var(--ink); height: 104px; display: flex; align-items: center; justify-content: center; padding: 1.1rem 1.3rem; transition: transform .12s ease, box-shadow .12s ease; }
.logo-tile:hover { transform: translate(-1px,-2px); box-shadow: 5px 7px 0 var(--ink); }
.logo-tile img { max-width: 100%; max-height: 54px; width: auto; height: auto; object-fit: contain; }
@media (min-width: 680px) { .logos { grid-template-columns: repeat(3,1fr); } }

.extras { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin-top: 1.5rem; }
.extras__label { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--gray); margin-right: .2rem; }
.chip-ic { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; background: var(--bone); border: 2px solid var(--ink); border-radius: 999px; padding: .45rem .9rem; }
.chip-ic svg { color: var(--chili); }

/* event icons */
.event__ic { color: var(--chili); display: inline-flex; margin-bottom: 0.5rem; }
