:root {
  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "Inter Tight", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, monospace;

  --ink: #17171A;
  --paper: #FDFDFB;
  --chalk: #F1F1EC;
  --card: #F7F7F1;
  --blue: #2634D9;
  --pink: #FF3D8A;
  --lime: #D4FF3D;
  --grey: #4A4A4D;
  --display: var(--f-display), system-ui, sans-serif;
  --body: var(--f-body), system-ui, sans-serif;
  --mono: var(--f-mono), ui-monospace, monospace;
  --max: 1440px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, textarea { font: inherit; outline: none; width: 100%; }
input::placeholder, textarea::placeholder { color: #9A9A96; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--blue); }
::selection { background: var(--lime); color: var(--ink); }

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .15; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pop {
  from { transform: translateX(-50%) translateY(14px) rotate(-1.5deg); opacity: 0; }
  to { transform: translateX(-50%) translateY(0) rotate(-1.5deg); opacity: 1; }
}

/* ---- site shell ---- */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  width: 100%;
}
.site-main { flex: 1; display: flex; flex-direction: column; width: 100%; }
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.page { padding: clamp(28px, 4vw, 56px) 0 72px; }

/* ---- ticker + header ---- */
.site-hdr {
  position: sticky; top: 0; z-index: 40; background: var(--paper); width: 100%;
  border-bottom: 2.5px solid var(--ink);
}
.ticker {
  background: var(--blue); color: var(--chalk); border-bottom: 2.5px solid var(--ink);
  overflow: hidden; height: 34px; display: flex; align-items: center; width: 100%;
}
.ticker-track {
  display: flex; width: max-content; animation: marquee 28s linear infinite; white-space: nowrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}
.ticker-track span { padding-right: 40px; }

.hdr-bar {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 64px);
}
.logo { display: flex; align-items: center; flex: 0 0 auto; }
.logo img { height: 44px; width: auto; }
.nav-desk { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav-link {
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 10px 16px; border: 2px solid transparent;
}
.nav-link:hover { border-color: var(--ink); color: var(--ink); }
.nav-link.on { background: var(--lime); border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); color: var(--ink); }
button.nav-link {
  cursor: pointer;
  font: inherit;
  appearance: none;
}
.hdr-tag {
  margin: 0; text-align: right; flex: 0 1 auto;
  font-family: var(--display); font-weight: 900; font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: -.01em; text-transform: uppercase; line-height: 1.25; max-width: 280px;
}
.hdr-tag span { background: var(--lime); padding: 1px 5px; box-shadow: 2px 2px 0 var(--ink); }
.search-btn,
.cart-btn,
.account-mob {
  position: relative; width: 44px; height: 44px; border: 2px solid var(--ink);
  background: var(--paper); box-shadow: 3px 3px 0 var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform .12s, box-shadow .12s; flex: 0 0 auto;
}
.search-btn:hover,
.cart-btn:hover,
.account-mob:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); color: var(--ink); }
.search-btn { margin-left: 4px; }
.badge-count {
  position: absolute; top: -9px; right: -9px; min-width: 20px; height: 20px;
  background: var(--pink); border: 2px solid var(--ink); font-family: var(--mono);
  font-size: 9px; font-weight: 600; display: flex; align-items: center; justify-content: center;
  padding: 0 3px; transition: transform .15s;
}
.badge-count.tick { transform: scale(1.25) rotate(8deg); }
.hdr-mob-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.install-app-mob {
  display: none;
}
.account-mob { display: none; }

/* ---- mobile bottom tab bar ---- */
.tab-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: var(--paper);
  border-top: 2.5px solid var(--ink);
  grid-template-columns: repeat(5, 1fr);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.tab-bar a {
  border: none; background: var(--paper); color: var(--ink);
  padding: 8px 2px calc(8px + env(safe-area-inset-bottom, 0px) * 0);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-decoration: none;
  min-height: 56px;
  justify-content: center;
}
.tab-bar a + a { border-left: 2px solid var(--ink); }
.tab-bar a.on { background: var(--ink); color: var(--lime); }
.tab-bar .ti {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  line-height: 1;
}
.tab-bar .ti-svg { display: block; }
.tab-bar .tl {
  font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
}
.tab-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  background: var(--pink);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- hero ---- */
.hero {
  position: relative; overflow: hidden; border-bottom: 2.5px solid var(--ink); background: #0D0D0F;
  width: 100%;
  min-height: clamp(480px, 72vh, 820px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 62%;
  transform: scale(1.02); filter: grayscale(1) contrast(1.22) brightness(1.16);
}
.hero .sc1 { position: absolute; inset: 0; background: linear-gradient(95deg, rgba(23,23,26,.88) 0%, rgba(23,23,26,.55) 38%, rgba(23,23,26,.08) 68%, transparent 88%); }
.hero .sc2 { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23,23,26,.7) 0%, rgba(23,23,26,.12) 40%, transparent 65%); }
.hero .vhs { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(23,23,26,.05) 3px 4px); }
.hero-copy {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) clamp(20px, 4vw, 64px);
  display: flex; flex-direction: column; gap: clamp(14px, 1.6vw, 22px);
}
.hero-live {
  margin: 0; display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--chalk); background: var(--ink); padding: 7px 12px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  border: 1px solid var(--ink); animation: blink 1.2s infinite;
}
.hero-copy h1 {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(56px, 9vw, 128px); line-height: .84; letter-spacing: -.04em;
  text-transform: uppercase; color: var(--chalk); text-shadow: .03em .03em 0 var(--ink);
  max-width: 12ch;
}
.hero-copy .ast { color: var(--pink); display: inline-block; animation: spin 7s linear infinite; margin-left: .04em; }
.hero-copy .lime { color: var(--lime); }
.hero-sub {
  margin: 0; font-size: clamp(15px, 1.5vw, 20px); font-weight: 600; line-height: 1.4;
  max-width: 460px; color: var(--chalk); text-shadow: 1px 1px 0 rgba(23,23,26,.8);
}
.hl { background: var(--lime); color: var(--ink); padding: 0 5px; border: 1.5px solid var(--ink); }
.hero-cta { align-self: flex-start; margin-top: 6px; }

/* ---- shop ---- */
.shop-section { padding: clamp(32px, 4vw, 56px) 0 80px; width: 100%; }
.chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0 28px;
}
.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
.chip {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .02em;
  text-transform: uppercase; padding: 9px 13px; border: 2px solid var(--ink);
  background: var(--chalk); color: var(--ink); box-shadow: 3px 3px 0 var(--ink);
  white-space: nowrap; transition: transform .12s, box-shadow .12s;
  height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.chip-short { display: none; }
.chip-full { display: inline; }
.chip:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.chip.on { background: var(--blue); color: var(--chalk); }
.feed-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px;
}
.feed-head h2 {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(24px, 3vw, 40px); text-transform: uppercase; letter-spacing: -.02em;
}
.feed-head span {
  font-family: var(--mono); font-size: 10px; letter-spacing: .06em; color: var(--grey); text-transform: uppercase;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.card {
  display: flex; flex-direction: column; min-width: 0;
  border: 2px solid var(--ink); background: var(--card);
  box-shadow: 4px 4px 0 var(--ink); transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.card-img {
  position: relative; display: block; border-bottom: 2px solid var(--ink); background: #E4E4DC; overflow: hidden;
}
.card-img img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04) rotate(-1deg); }
.badge {
  position: absolute; top: 8px; left: 8px; border: 1.5px solid var(--ink); box-shadow: 2px 2px 0 var(--ink);
  font-family: var(--mono); font-size: 8px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 6px; transform: rotate(-4deg);
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.badge.big { font-size: 10px; padding: 5px 8px; border-width: 2px; top: 12px; left: 12px; }
.card-body { display: flex; flex-direction: column; gap: 2px; padding: 8px 10px 6px; flex: 1; min-width: 0; }
.card-body h3 {
  margin: 0; font-size: 14px; font-weight: 700; line-height: 1.15; letter-spacing: -.01em; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-body a:hover h3 { color: var(--blue); }
.card-blurb {
  margin: 0; font-size: 11px; font-weight: 500; color: var(--grey); line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.card-body > span,
.card-meta { font-family: var(--mono); font-size: 8px; color: var(--grey); margin-top: auto; padding-top: 4px; }
.card-foot { display: flex; align-items: stretch; border-top: 2px solid var(--ink); margin-top: auto; }
.card-foot .price, .buy .price {
  flex: 1; display: flex; align-items: center; padding: 0 10px; min-width: 0;
  font-family: var(--display); font-weight: 900; font-size: 15px; letter-spacing: -.02em;
}
.add {
  border: none; border-left: 2px solid var(--ink); background: var(--blue); color: var(--chalk);
  font-family: var(--mono); font-size: 15px; font-weight: 600; width: 42px; min-height: 40px;
  flex: 0 0 42px;
}
.add:hover { background: var(--ink); color: var(--lime); }
.add.on { background: var(--lime); color: var(--ink); }

/* ---- shared UI ---- */
.h1 {
  margin: 0 0 6px; font-family: var(--display); font-weight: 900;
  font-size: clamp(32px, 5vw, 56px); text-transform: uppercase; letter-spacing: -.03em; line-height: .95;
}
.accent-blue { color: var(--blue); }
.accent-pink { color: var(--pink); }
.accent-lime { color: var(--blue); background: var(--lime); padding: 0 6px; box-shadow: 3px 3px 0 var(--ink); }

.search-box {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 28px; border: 2.5px solid var(--ink);
  background: var(--chalk); box-shadow: 5px 5px 0 var(--ink); padding: 0 14px;
}
.search-icon {
  font-size: 22px; line-height: 1; color: var(--grey); flex: 0 0 auto;
}
.search-field {
  border: none !important; box-shadow: none !important; background: transparent !important;
  margin: 0; padding: 16px 0; font-size: 16px; font-weight: 600;
}
.search-field:focus { box-shadow: none !important; }
.kicker {
  margin: 0 0 24px; font-family: var(--mono); font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--grey);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); font-family: var(--mono);
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 14px 18px; transition: transform .12s, box-shadow .12s; color: var(--ink); background: var(--chalk);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); color: inherit; }
.btn:active { transform: translate(3px,3px); box-shadow: 0 0 0 var(--ink); }
.btn-blue { background: var(--blue); color: var(--chalk); }
.btn-lime { background: var(--lime); color: var(--ink); }
.field {
  padding: 12px; border: 2px solid var(--ink); background: var(--chalk); font-family: var(--mono); font-size: 13px;
}
.field:focus { background: #fff; box-shadow: 3px 3px 0 var(--blue); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cols { display: flex; flex-wrap: wrap; gap: clamp(18px, 2.5vw, 36px); align-items: flex-start; }
.col-main { flex: 999 1 340px; min-width: min(100%, 300px); display: flex; flex-direction: column; gap: 16px; }
.col-side { flex: 1 1 300px; min-width: min(100%, 280px); max-width: 400px; position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; }
.panel {
  border: 2.5px solid var(--ink); background: var(--card); box-shadow: 5px 5px 0 var(--ink);
  padding: clamp(16px, 2vw, 24px); display: flex; flex-direction: column; gap: 12px;
}
.panel h2 { margin: 0; font-family: var(--display); font-weight: 900; font-size: 15px; text-transform: uppercase; }
.step { border: 2px solid var(--ink); padding: 0 7px; margin-right: 7px; }
.step.lime { background: var(--lime); }
.step.pink { background: var(--pink); }
.empty {
  border: 2.5px dashed var(--ink); padding: 48px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.empty strong { font-family: var(--display); font-weight: 900; font-size: 22px; text-transform: uppercase; }
.note { margin: 0; font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: var(--grey); line-height: 1.45; }
.link-btn, .back-link {
  align-self: flex-start; font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--grey); text-decoration: underline;
}
.back-link { display: inline-block; margin-bottom: 16px; }
.qty { display: flex; align-items: stretch; border: 2px solid var(--ink); }
.qty button { width: 38px; height: 38px; border: none; background: var(--chalk); font-family: var(--mono); font-size: 16px; }
.qty button:hover { background: var(--lime); }
.qty button:first-child { border-right: 2px solid var(--ink); }
.qty button:last-child { border-left: 2px solid var(--ink); }
.qty span { min-width: 42px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 14px; font-weight: 600; }

/* ---- product detail ---- */
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.pd-photo {
  position: relative; border: 2.5px solid var(--ink); background: #E4E4DC;
  box-shadow: 8px 8px 0 var(--ink); overflow: hidden;
}
.pd-photo img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pd-info { display: flex; flex-direction: column; gap: 14px; }
.pd-dept { font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.pd-info h1 {
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(28px, 3.6vw, 48px); line-height: .95; letter-spacing: -.03em; text-transform: uppercase;
}
.pd-rate { font-family: var(--mono); font-size: 11px; color: var(--grey); }
.pd-rate b { color: var(--blue); font-weight: 400; }
.pd-desc { margin: 0; font-size: clamp(14px, 1.3vw, 16px); font-weight: 500; line-height: 1.5; color: #3A3A3D; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { background: var(--chalk); border: 2px solid var(--ink); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .04em; padding: 6px 9px; }
.tag.lime { background: var(--lime); }
.buy {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  border-top: 2px solid var(--ink); padding-top: 16px; margin-top: 4px;
}
.buy .price { flex: 0 0 auto; padding: 0; font-size: clamp(26px, 3vw, 38px); }
.buy .btn { flex: 1 1 180px; }

/* ---- cart ---- */
.row {
  display: flex; gap: 16px; border: 2.5px solid var(--ink); background: var(--card);
  box-shadow: 5px 5px 0 var(--ink); padding: 14px;
}
.row img { width: clamp(84px, 9vw, 112px); height: clamp(84px, 9vw, 112px); object-fit: cover; border: 2px solid var(--ink); background: #E4E4DC; }
.row-info { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.row-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.row-top b { font-size: clamp(15px, 1.5vw, 18px); font-weight: 700; line-height: 1.15; color: var(--ink); }
.x-btn { flex: 0 0 auto; width: 32px; height: 32px; border: 2px solid var(--ink); background: var(--chalk); font-family: var(--mono); font-size: 13px; font-weight: 600; }
.x-btn:hover { background: var(--pink); }
.row-meta { font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: var(--grey); }
.row-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 6px; }
.row-foot .total { font-family: var(--display); font-weight: 900; font-size: clamp(18px, 1.8vw, 22px); }
.shipbar {
  border: 2px solid var(--ink); padding: 12px 15px; font-family: var(--mono);
  font-size: 11px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
}
.summary {
  border: 2.5px solid var(--ink); background: var(--card); box-shadow: 7px 7px 0 var(--ink);
  padding: 22px; display: flex; flex-direction: column; gap: 11px;
}
.summary .st { font-family: var(--display); font-weight: 900; font-size: 16px; text-transform: uppercase; }
.sline { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 13px; }
.stotal {
  display: flex; justify-content: space-between; border-top: 2px solid var(--ink); padding-top: 11px;
  font-family: var(--display); font-weight: 900; font-size: 24px; letter-spacing: -.02em;
}
.fine { text-align: center; font-family: var(--mono); font-size: 9px; letter-spacing: .05em; color: var(--grey); }

/* ---- checkout ---- */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pay-chip {
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase; padding: 12px 8px; border: 2px solid var(--ink);
  background: var(--chalk); color: var(--ink); box-shadow: 3px 3px 0 var(--ink);
}
.pay-chip.on { background: var(--ink); color: var(--lime); }
.qr {
  width: 96px; height: 96px; flex: 0 0 auto; border: 2.5px solid var(--ink);
  background: repeating-conic-gradient(#17171A 0% 25%, #F1F1EC 0% 50%) 0 / 14px 14px;
  box-shadow: 3px 3px 0 var(--ink); position: relative;
}
.qr span { position: absolute; inset: 28px; background: var(--lime); border: 2px solid var(--ink); }
.manifest {
  border: 2.5px solid var(--ink); background: var(--ink); color: var(--chalk);
  box-shadow: 6px 6px 0 var(--blue); padding: 22px; display: flex; flex-direction: column; gap: 10px;
}
.manifest h2 { margin: 0; font-family: var(--display); font-weight: 900; font-size: 15px; text-transform: uppercase; color: var(--lime); }
.mline { display: flex; justify-content: space-between; gap: 10px; font-family: var(--mono); font-size: 11px; }
.mline.ship { border-top: 1px solid rgba(241,241,236,.25); padding-top: 9px; }
.mtotal { display: flex; justify-content: space-between; font-family: var(--display); font-weight: 900; font-size: 21px; }
.mtotal b { color: var(--lime); font-weight: 900; }
.pay-btn {
  border: 2px solid var(--ink); background: var(--lime); color: var(--ink);
  box-shadow: 4px 4px 0 var(--chalk); font-family: var(--mono); font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: 15px;
}
.manifest .back {
  border: none; background: none; font-family: var(--mono); font-size: 10px;
  letter-spacing: .06em; text-transform: uppercase; color: rgba(241,241,236,.6); padding: 6px; text-align: center;
}

/* ---- done / drops / contact ---- */
.done-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 20px; }
.done {
  position: relative; width: 100%; max-width: 620px; border: 2.5px solid var(--ink); background: var(--card);
  box-shadow: 8px 8px 0 var(--ink); padding: 40px 26px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.done .stkr {
  position: absolute; top: -14px; right: 18px; background: var(--lime); border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink); font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: .04em; padding: 6px 9px; transform: rotate(5deg);
}
.done .check {
  width: 62px; height: 62px; border: 2.5px solid var(--ink); background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink); display: flex; align-items: center; justify-content: center;
  font-size: 30px; transform: rotate(-3deg);
}
.done h1 {
  margin: 0; font-family: var(--display); font-weight: 900; font-size: clamp(27px, 3.4vw, 42px);
  line-height: .95; letter-spacing: -.03em; text-transform: uppercase;
}
.done h1 span { color: var(--blue); }
.done .ord { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; }
.done p { margin: 0; max-width: 420px; font-size: 14px; font-weight: 500; color: var(--grey); line-height: 1.5; }

.drop {
  border: 2.5px solid var(--ink); background: var(--blue); box-shadow: 6px 6px 0 var(--ink);
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 40px);
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
}
.drop .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); }
.drop .cd { font-family: var(--display); font-weight: 900; font-size: clamp(32px, 5vw, 64px); letter-spacing: -.02em; color: var(--chalk); }
.drop p { margin: 0; max-width: 440px; font-size: 14px; font-weight: 500; color: var(--chalk); opacity: .85; line-height: 1.45; }
.drop-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; width: 100%; max-width: 480px; }
.drop-form .field { flex: 1 1 200px; box-shadow: 4px 4px 0 var(--ink); }

.contact-info { flex: 1 1 280px; }
.contact-form { flex: 1.3 1 340px; }
.ci-row { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.ci-ico { width: 34px; height: 34px; flex: 0 0 auto; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.ci-row small { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }
.ci-row b { font-size: 14px; font-weight: 700; }
.contact-form textarea { flex: 1; min-height: 140px; resize: vertical; }

/* ---- footer ---- */
.site-ftr { border-top: 2.5px solid var(--ink); background: var(--paper); margin-top: auto; width: 100%; }
.ftr-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  width: 100%; max-width: var(--max); margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) clamp(20px, 4vw, 64px);
}
.ftr-brand img { height: 36px; width: auto; margin-bottom: 12px; }
.ftr-brand p { margin: 0; font-size: 14px; font-weight: 600; max-width: 280px; line-height: 1.4; }
.ftr-grid h3 {
  margin: 0 0 12px; font-family: var(--display); font-weight: 900; font-size: 14px;
  text-transform: uppercase; letter-spacing: -.01em;
}
.ftr-grid a, .ftr-grid span {
  display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
  margin-bottom: 8px; color: var(--grey);
}
.ftr-grid a:hover { color: var(--blue); }
.ftr-bar {
  border-top: 2px solid var(--ink);
  width: 100%;
  padding: 14px clamp(20px, 4vw, 64px);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey);
}

.toast {
  position: fixed; bottom: 28px; left: 50%; z-index: 60;
  background: var(--lime); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink);
  padding: 11px 16px; font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase; animation: pop .18s ease-out; white-space: nowrap;
}

/* ---- responsive ---- */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .hdr-tag { display: none; }
}

@media (max-width: 820px) {
  .pd { grid-template-columns: 1fr; }
  .nav-desk { display: none; }
  .search-desk,
  .cart-desk { display: none; }
  .logo { margin: 0; }
  .logo img { height: 34px; }
  .hdr-bar {
    gap: 10px;
    padding: 10px 14px;
    padding-top: calc(10px + env(safe-area-inset-top, 0px));
  }
  .hdr-mob-actions { display: flex; }
  .account-mob { display: flex; width: 40px; height: 40px; }
  .hdr-mob-actions .cart-btn { width: 40px; height: 40px; }
  .install-app-mob {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 8px 10px;
    border: 2px solid var(--ink);
    background: var(--lime);
    box-shadow: 2px 2px 0 var(--ink);
    white-space: nowrap;
    color: var(--ink);
    cursor: pointer;
    min-height: 40px;
  }
  .install-app-mob:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }
  .tab-bar { display: grid; }
  .site {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
  .ftr-grid { grid-template-columns: 1fr; gap: 24px; }
  .col-side { position: static; max-width: none; }
  .hero { min-height: clamp(420px, 62vh, 640px); }
  .hero-copy h1 { max-width: none; }
  .shop-section { padding: 24px 0 40px; }
  .chips {
    gap: 8px;
    padding: 0 0 16px;
    margin: 0;
  }
  .chips-row {
    display: grid;
    gap: 8px;
  }
  .chips-row-a {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .chips-row-b {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .chip {
    width: 100%;
    height: auto;
    min-height: 40px;
    padding: 6px 3px;
    font-size: 8px;
    letter-spacing: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
    box-shadow: 2px 2px 0 var(--ink);
  }
  .chip-full { display: inline; }
  .chip-short { display: none; }
  .feed-head {
    align-items: center;
    margin-bottom: 14px;
  }
  .feed-head h2 { font-size: clamp(22px, 7vw, 28px); }
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .card {
    box-shadow: 3px 3px 0 var(--ink);
  }
  .card:hover,
  .card:active {
    transform: none;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .card:hover .card-img img { transform: none; }
  /* ~2 rows × 2 cols = 4 items visible per phone screen */
  .card-img {
    position: relative;
    aspect-ratio: unset;
    height: clamp(96px, calc((100dvh - 280px) / 2 - 48px), 150px);
    max-height: 150px;
    overflow: hidden;
  }
  .card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center;
  }
  .card-body { padding: 5px 7px 2px; gap: 0; min-height: 0; }
  .card-body h3 { font-size: 11px; -webkit-line-clamp: 1; line-height: 1.15; }
  .card-blurb { display: none; }
  .card-body > span,
  .card-meta { display: none; }
  .card-foot .price { padding: 0 7px; font-size: 12px; }
  .add {
    width: 32px;
    min-height: 30px;
    flex-basis: 32px;
    font-size: 14px;
  }
  .badge {
    top: 5px;
    left: 5px;
    font-size: 7px;
    padding: 2px 5px;
  }
  .toast { bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
  .install-tip-backdrop { z-index: 80; }
  .page { padding-bottom: 40px; }
  .wrap { padding-left: 14px; padding-right: 14px; }
  .buy {
    position: sticky;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    z-index: 30;
    background: var(--paper);
    margin-left: -14px;
    margin-right: -14px;
    padding: 12px 14px;
    border-top: 2.5px solid var(--ink);
    box-shadow: 0 -4px 0 rgba(23, 23, 26, 0.06);
  }
  .row { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .grid { gap: 8px; }
  .card-img {
    height: clamp(88px, calc((100dvh - 260px) / 2 - 46px), 136px);
    max-height: 136px;
  }
  .card-body { padding: 4px 6px 2px; }
  .card-body h3 { font-size: 11px; }
  .card-foot .price { font-size: 12px; padding: 0 6px; }
  .add { width: 30px; min-height: 28px; flex-basis: 30px; font-size: 13px; }
  .pay-grid { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .toast {
    left: 16px; right: 16px; transform: none; white-space: normal; text-align: center; animation: none;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
  .install-app-mob {
    padding: 8px 8px;
    font-size: 8px;
  }
  .ticker { height: 28px; }
  .ticker-track { font-size: 10px; }
  .hero-copy { padding: 28px 14px 36px; }
  .hero-copy h1 { font-size: clamp(44px, 14vw, 64px); }
}

/* ---- portals (reuse brand tokens) ---- */
body:has(.portal-shell) .site-hdr,
body:has(.portal-shell) .site-ftr,
body:has(.portal-shell) .tab-bar { display: none !important; }
body:has(.portal-shell) .site-main { padding: 0; }

.portal-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: var(--paper);
}
.portal-side {
  border-right: 2.5px solid var(--ink);
  background: var(--chalk);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
}
.portal-side-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 2px solid var(--ink);
}
.portal-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 13px;
}
.portal-brand img { height: 36px; width: auto; }
.portal-close { display: none; border: 2px solid var(--ink); background: var(--paper); width: 36px; height: 36px; }
.portal-side-nav { padding: 12px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.portal-sep {
  margin: 12px 0 4px; font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--grey);
}
.portal-link {
  display: block; padding: 10px 12px; border: 2px solid transparent;
  font-family: var(--mono); font-size: 12px; font-weight: 600; text-transform: uppercase;
}
.portal-link:hover { border-color: var(--ink); color: var(--ink); }
.portal-link.on { background: var(--lime); border-color: var(--ink); box-shadow: 3px 3px 0 var(--ink); color: var(--ink); }
.portal-side-foot {
  padding: 14px; border-top: 2px solid var(--ink); display: flex; flex-direction: column; gap: 8px;
}
.portal-main { min-width: 0; display: flex; flex-direction: column; }
.portal-top {
  display: none; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-bottom: 2px solid var(--ink); background: var(--paper);
  position: sticky; top: 0; z-index: 20;
}
.portal-content { padding: clamp(20px, 3vw, 40px); }
.portal-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(23,23,26,.35); border: 0; z-index: 45;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}
.stat {
  border: 2.5px solid var(--ink);
  background: var(--card);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat span { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); }
.stat b { font-family: var(--display); font-weight: 900; font-size: 28px; line-height: 1; }
.stat em { font-style: normal; }

.data-table-wrap { overflow: auto; border: 2.5px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); background: var(--paper); }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th, .data-table td { padding: 12px 14px; border-bottom: 2px solid var(--ink); text-align: left; vertical-align: middle; }
.data-table th {
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  background: var(--chalk); position: sticky; top: 0;
}
.data-table tr:last-child td { border-bottom: 0; }

.status-badge {
  display: inline-flex; align-items: center; padding: 4px 8px;
  border: 2px solid var(--ink); font-family: var(--mono); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
}
.status-badge.tone-ok { background: var(--lime); }
.status-badge.tone-warn { background: #FFE08A; }
.status-badge.tone-bad { background: var(--pink); color: var(--ink); }
.status-badge.tone-neutral { background: var(--chalk); }

.order-timeline { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.order-timeline li {
  border: 2px solid var(--ink); background: var(--card); padding: 12px; box-shadow: 3px 3px 0 var(--ink);
  display: grid; gap: 4px;
}
.ot-status { font-family: var(--mono); font-weight: 600; text-transform: uppercase; font-size: 12px; }
.ot-note { color: var(--grey); }
.ot-time { font-family: var(--mono); font-size: 10px; color: var(--grey); }

.portal-login {
  max-width: 420px; margin: 40px auto 64px; padding: 28px;
  border: 2.5px solid var(--ink); background: var(--card); box-shadow: 8px 8px 0 var(--ink);
}
.portal-logo { height: 52px; width: auto; margin-bottom: 16px; }
.portal-login h1 { margin: 0 0 6px; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 28px; }
.auth-form { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.form-error { color: var(--pink); font-family: var(--mono); font-size: 12px; margin: 0; }
.form-success { color: var(--ink); background: var(--lime); border: 2px solid var(--ink); padding: 10px 12px; margin: 0 0 12px; font-size: 13px; }
.install-tip-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(23, 23, 26, 0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.install-tip { max-width: 360px; width: 100%; background: var(--chalk); }
.install-steps {
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}
.install-steps li { margin-bottom: 10px; }
.install-share-ico {
  display: inline-flex;
  margin-left: 6px;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: var(--lime);
  font-size: 14px;
  vertical-align: middle;
}
.portal-banner {
  background: var(--chalk);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 14px;
}
.portal-banner.pending { background: #FFE566; }
.portal-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.panel-stack { display: flex; flex-direction: column; gap: 16px; }
.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 140px; margin-top: 12px; }
.chart-bar {
  flex: 1; background: var(--blue); border: 2px solid var(--ink); min-width: 8px;
  box-shadow: 2px 2px 0 var(--ink);
}

@media (max-width: 960px) {
  .portal-shell { grid-template-columns: 1fr; }
  .portal-side {
    position: fixed; inset: 0 auto 0 0; width: min(300px, 88vw); z-index: 50;
    transform: translateX(-105%); transition: transform .18s ease;
  }
  .portal-side.open { transform: translateX(0); }
  .portal-close { display: inline-flex; align-items: center; justify-content: center; }
  .portal-top { display: flex; }
  .portal-backdrop { display: block; }
}

/* ---- portal kit extras ---- */
.modal-root { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(23,23,26,.45); border: 0; cursor: pointer; }
.modal-panel {
  position: relative; z-index: 1; width: min(520px, 100%);
  background: var(--paper); border: 2.5px solid var(--ink); box-shadow: 8px 8px 0 var(--ink);
  max-height: 90vh; overflow: auto;
}
.modal-panel.wide { width: min(720px, 100%); }
.modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border-bottom: 2px solid var(--ink);
}
.modal-head h2 { margin: 0; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 18px; }
.modal-body { padding: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.file-uploader { display: flex; flex-direction: column; gap: 8px; }
.search-filter { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.search-filter .field { max-width: 280px; }
.pagination { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.portal-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.notification-panel .note-row { padding: 10px 0; border-bottom: 1px solid #ddd; display: flex; flex-direction: column; gap: 2px; }
.notification-panel .note-row.unread { background: var(--chalk); padding: 10px; border: 2px solid var(--ink); margin-bottom: 8px; }
.qc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 600px) { .qc-grid { grid-template-columns: 1fr; } }
