/* ============ TOKENS ============ */
:root {
  --red: #C0291B;
  --red-dark: #8C1B10;
  --red-deep: #5C0F08;
  --yellow: #F8DC8E;
  --yellow-soft: #F2CD74;
  --yellow-bright: #FFF3CF;
  --cream: #F7E9C0;
  --slot: #EFD89A;
  --ink: #1C1410;
  --muted: #6B5230;
  --sans: 'Baloo 2', sans-serif;
  --display: 'Chango', cursive;
  --type: 'Special Elite', monospace;
  --hand: 'Caveat', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: light; }

body {
  margin: 0;
  background: var(--yellow);
  font-family: var(--sans);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: clip; /* contain rotated decorations without breaking sticky nav */
}

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

img { display: block; max-width: 100%; }

/* hidden must beat component display rules (.modal/.drawer__state set display) */
[hidden] { display: none !important; }

.wrap { max-width: 1240px; margin: 0 auto; }

@keyframes ugoMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ugoFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes ugoFloat { 0%, 100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-14px); } }
@keyframes ugoSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ugoTwinkle { 0%, 100% { opacity: 0.75; } 50% { opacity: 1; } }
@keyframes ugoPop { 0% { transform: scale(1); } 40% { transform: scale(1.55); } 70% { transform: scale(0.88); } 100% { transform: scale(1); } }

/* ---- scroll reveal (uses individual `translate`/`scale` so it never fights hover `transform`) ---- */
.js .reveal {
  opacity: 0; translate: 0 30px;
  transition: opacity 0.7s ease, translate 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--rd, 0s);
}
.js .reveal--left { translate: -42px 0; }
.js .reveal--right { translate: 42px 0; }
.reveal.in { opacity: 1; translate: 0 0; }

/* ---- reduced motion: kill all the fun, show everything ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1 !important; translate: none !important; }
  .js .follow__tile { opacity: 1 !important; scale: none !important; }
}

/* ============ ASTERISKS ============ */
.aster, .ticker__star { font-variant-emoji: text; } /* force text glyph, not color emoji, on mobile */
.aster {
  position: absolute; color: var(--red); font-size: 22px; user-select: none; line-height: 1;
  display: inline-block; transform-origin: center;
  animation: ugoSpin 18s linear infinite, ugoTwinkle 4s ease-in-out infinite;
}
.aster--xl { font-size: 34px; }
.aster--cream { color: var(--yellow); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--display);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn--solid { background: var(--red); color: var(--yellow); padding: 17px 34px; font-size: 16px; }
.btn--solid:hover { background: var(--red-dark); }
.btn--ghost { background: transparent; color: var(--red); border: 3px solid var(--red); padding: 14px 30px; font-size: 16px; }
.btn--ghost:hover { background: var(--red); color: var(--yellow); }
.btn--block { width: 100%; }
.btn:active { transform: translateY(1px) scale(0.985); }
.card__add:active, .btn-cart:active, .list__btn:active, .coming__btn:active,
.citem__qbtn:active, .qty__btn:active, .drawer__close:active, .modal__close:active { transform: scale(0.92); }

/* ============ TICKER ============ */
.ticker { overflow: hidden; background: var(--red); color: var(--yellow); padding: 9px 0; }
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  animation: ugoMarquee 32s linear infinite;
}
.ticker__track span { padding: 0 20px; white-space: nowrap; }
.ticker__track .ticker__star { color: var(--ink); padding: 0; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 13px 32px;
  background: var(--yellow);
  border-bottom: 3px solid var(--red);
}
.nav__brand { text-decoration: none; color: var(--red); font-family: var(--display); font-size: 22px; line-height: 1; letter-spacing: 0.5px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__link { text-decoration: none; color: var(--ink); font-weight: 800; font-size: 15px; letter-spacing: 1px; transition: color 0.15s ease; }
.nav__link:hover { color: var(--red); }
.nav__link--brand { color: var(--red); border: 2px solid var(--red); border-radius: 999px; padding: 6px 14px; transition: background 0.15s ease, color 0.15s ease; }
.nav__link--brand:hover { background: var(--red); color: var(--yellow); }

.btn-cart {
  font-family: var(--sans);
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--yellow);
  border: none; border-radius: 999px;
  padding: 10px 22px; font-size: 14px; font-weight: 800; letter-spacing: 1.5px;
  cursor: pointer; transition: background 0.15s ease;
}
.btn-cart:hover { background: var(--red-dark); }
.btn-cart__count {
  background: var(--yellow); color: var(--red);
  border-radius: 999px; min-width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; padding: 0 5px;
}
.btn-cart__count.pop { animation: ugoPop 0.45s ease; }

.nav__actions { display: flex; align-items: center; gap: 22px; }
.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 0 10px;
  background: transparent; border: 2px solid var(--red); border-radius: 12px; cursor: pointer;
}
.nav__burger span { display: block; height: 3px; border-radius: 3px; background: var(--red); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center;
  padding: 48px 56px 84px; max-width: 1240px; margin: 0 auto; position: relative;
}
.hero__a1 { top: 60px; left: 24px; }
.hero__a2 { bottom: 70px; left: 46%; }
.hero__a3 { top: 46%; left: -18px; font-size: 30px; }
.hero__copy { animation: ugoFadeUp 0.7s ease both; text-align: center; }
.hero__arc { width: min(440px, 90%); display: block; margin: 0 auto -8px; }
.hero__arc-text { font-family: var(--display); font-size: 38px; fill: var(--red); text-anchor: middle; letter-spacing: 2px; }
.hero__dashes { width: 86px; display: block; margin: 0 auto 2px; }
.hero__title { margin: 0; font-family: var(--display); font-weight: 400; color: var(--red); line-height: 0.82; letter-spacing: -2px; }
.hero__title span { display: block; font-size: clamp(80px, 11vw, 150px); }
.hero__lede { font-family: var(--type); font-size: 17.5px; line-height: 1.7; max-width: 46ch; margin: 28px auto 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__media { position: relative; animation: ugoFadeUp 0.7s ease 0.15s both; padding: 30px 10px 10px; perspective: 900px; }
.scribble {
  font-family: var(--hand); font-weight: 700; font-size: 23px; line-height: 1.15;
  position: absolute; z-index: 2;
}
.scribble--tl { top: -6px; left: -4px; transform: rotate(-7deg); max-width: 200px; }
.scribble--br { bottom: 34px; right: -8px; transform: rotate(5deg); max-width: 150px; text-align: right; }
.scribble__arrow { display: inline-block; font-size: 27px; }
.scribble__arrow--down { transform: rotate(35deg); }
.scribble__arrow--up { transform: rotate(-35deg); }
.hero__jar-tilt { transform: rotate(-2deg); animation: ugoFloat 5.5s ease-in-out 0.9s infinite; }
.hero__jar {
  width: 100%; height: 540px; object-fit: cover; border-radius: 18px; background: var(--yellow-soft);
  transition: transform 0.25s ease; will-change: transform;
}

/* ============ SHOP ============ */
.shop { background: var(--red); padding: 76px 56px 88px; position: relative; }
.shop__a1 { top: 44px; right: 70px; font-size: 30px; }
.shop__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 42px; flex-wrap: wrap; }
.shop__title { margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(40px, 5vw, 64px); color: var(--yellow); line-height: 1; letter-spacing: -1px; }
.shop__meta { margin: 0; color: var(--yellow); font-family: var(--type); font-size: 15.5px; }
.shop__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }

.card {
  background: var(--cream); border-radius: 16px; overflow: hidden; cursor: pointer;
  box-shadow: 0 4px 0 rgba(28,20,16,0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 0 rgba(28,20,16,0.25); }
.card__img { width: 100%; height: 240px; object-fit: cover; background: var(--slot); transition: transform 0.45s ease; }
.card:hover .card__img { transform: scale(1.07); }
.card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; border-top: 2px solid var(--red); }
.card__tagrow { display: flex; gap: 8px; align-items: center; }
.card__note { font-family: var(--hand); font-weight: 700; font-size: 18px; color: var(--ink); }
.card__name { margin: 0; font-family: var(--display); font-weight: 400; font-size: 23px; line-height: 1.1; color: var(--red); }
.card__sub { margin: 5px 0 0; font-family: var(--type); font-size: 13.5px; color: var(--ink); }
.card__buyrow { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 6px; }
.card__price { font-family: var(--display); font-size: 22px; color: var(--ink); }
.card__add {
  font-family: var(--sans); background: var(--red); color: var(--yellow);
  border: none; border-radius: 999px; padding: 10px 18px;
  font-size: 13px; font-weight: 800; letter-spacing: 1.2px; cursor: pointer;
  transition: background 0.15s ease;
}
.card__add:hover { background: var(--red-dark); }

.pill { border-radius: 999px; font-weight: 800; }
.pill--solid { background: var(--red); color: var(--yellow); padding: 3px 12px; font-size: 11px; letter-spacing: 1.4px; }
.pill--outline { border: 2px solid var(--red); color: var(--red); padding: 5px 13px; font-size: 12px; }

.coming {
  border: 3px dashed var(--yellow); border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 32px 26px; color: var(--yellow);
}
.coming__hand { font-family: var(--hand); font-weight: 700; font-size: 24px; transform: rotate(-3deg); }
.coming__big { font-family: var(--display); font-size: 30px; line-height: 1.05; }
.coming__p { margin: 0; font-family: var(--type); font-size: 14px; line-height: 1.6; opacity: 0.95; }
.coming__btn {
  text-decoration: none; font-family: var(--sans);
  background: var(--yellow); color: var(--red); border-radius: 999px;
  padding: 11px 22px; font-size: 13px; font-weight: 800; letter-spacing: 1.2px;
  transition: background 0.15s ease;
}
.coming__btn:hover { background: var(--yellow-bright); }

/* ============ WHAT IS SUGO ============ */
.what { padding: 88px 56px; max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.what__a1 { top: 90px; left: 10px; font-size: 36px; }
.what__a2 { bottom: 110px; right: 16px; font-size: 24px; }
.what__title { margin: 0 0 34px; font-family: var(--display); font-weight: 400; font-size: clamp(36px, 5vw, 56px); color: var(--red); letter-spacing: -1px; }
.what__p { margin: 0 0 24px; font-family: var(--type); font-size: 18px; line-height: 1.75; }
.what__p--accent { font-size: 19px; font-weight: 700; color: var(--red); }
.what__p:last-child { margin-bottom: 0; }

/* ============ WHO IS UGO ============ */
.who { background: var(--red); padding: 84px 56px; position: relative; }
.who__a1 { top: 50px; left: 60px; font-size: 32px; }
.who__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 56px; align-items: center; }
.who__media { position: relative; }
.who__portrait-tilt { transform: rotate(2deg); }
.who__portrait { width: 100%; height: 440px; object-fit: cover; border-radius: 18px; background: #A82114; }
.who__badge {
  position: absolute; bottom: -14px; right: -10px;
  background: var(--yellow); color: var(--ink); border-radius: 999px;
  padding: 8px 18px; transform: rotate(-4deg);
  font-family: var(--hand); font-weight: 700; font-size: 21px;
}
.who__copy { color: var(--yellow); }
.who__title { margin: 0 0 26px; font-family: var(--display); font-weight: 400; font-size: clamp(36px, 5vw, 56px); line-height: 1; letter-spacing: -1px; }
.who__p { margin: 0 0 18px; font-family: var(--type); font-size: 17px; line-height: 1.75; }
.who__sig { font-family: var(--hand); font-weight: 700; font-size: 30px; transform: rotate(-2deg); display: inline-block; }

/* ============ FOLLOW ============ */
.follow { padding: 72px 56px; }
.follow__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.follow__title { margin: 0; font-family: var(--display); font-weight: 400; font-size: clamp(30px, 4vw, 46px); color: var(--red); letter-spacing: -1px; }
.follow__handle { color: var(--red); font-weight: 800; font-size: 16px; letter-spacing: 0.5px; text-decoration: none; transition: color 0.15s ease; }
.follow__handle:hover { color: var(--red-dark); }
.follow__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.follow__tile {
  display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 1 / 1; background: var(--yellow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.follow__tile img { width: 100%; height: 100%; object-fit: cover; }
.follow__tile--r1 { transform: rotate(-1.2deg); }
.follow__tile--r2 { transform: rotate(1deg); }
.follow__tile--r3 { transform: rotate(-0.8deg); }
.follow__tile--r4 { transform: rotate(1.4deg); }
.follow__tile:hover { transform: scale(1.05) rotate(0deg); box-shadow: 0 10px 0 rgba(192,41,27,0.18); }
/* reveal pop-in for tiles (scale is independent of the rotate transform) */
.js .follow__tile { opacity: 0; scale: 0.9; transition: opacity 0.65s ease var(--rd, 0s), scale 0.55s cubic-bezier(0.22, 1, 0.36, 1) var(--rd, 0s), transform 0.35s ease, box-shadow 0.35s ease; }
.follow__tile.in { opacity: 1; scale: 1; }
.js .follow__tile:nth-child(2) { --rd: 0.09s; }
.js .follow__tile:nth-child(3) { --rd: 0.18s; }
.js .follow__tile:nth-child(4) { --rd: 0.27s; }

/* ============ EMAIL ============ */
.list { background: var(--red); padding: 64px 56px; position: relative; }
.list__a1 { top: 40px; right: 90px; font-size: 26px; }
.list__inner { max-width: 760px; margin: 0 auto; text-align: center; color: var(--yellow); }
.list__title { margin: 0 0 12px; font-family: var(--display); font-weight: 400; font-size: clamp(28px, 4vw, 42px); letter-spacing: -1px; }
.list__p { margin: 0 0 28px; font-family: var(--type); font-size: 16px; line-height: 1.6; }
.list__form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.list__input {
  font-family: var(--type); border: none; border-radius: 999px;
  padding: 15px 24px; font-size: 16px; width: 320px; max-width: 100%;
  background: var(--yellow); color: var(--ink); outline: none;
}
.list__btn {
  font-family: var(--display); background: var(--ink); color: var(--yellow);
  border: none; border-radius: 999px; padding: 15px 30px; font-size: 15px;
  letter-spacing: 1px; cursor: pointer; transition: background 0.15s ease;
}
.list__btn:hover { background: #3A2A1E; }
.list__done {
  display: inline-block; background: var(--yellow); color: var(--ink);
  border-radius: 999px; padding: 15px 32px;
  font-family: var(--hand); font-weight: 700; font-size: 23px; transform: rotate(-1.5deg);
}

/* ---- batch-one signup: multi-field form ---- */
.list__form { flex-direction: column; align-items: center; gap: 12px; }
.list__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; width: 100%; max-width: 680px; }
.list__row .list__input { flex: 1 1 240px; width: auto; }
.list__row .list__btn { flex: 0 0 auto; }
.list__hp { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.list__error {
  margin-top: 18px; display: inline-block; background: var(--ink); color: var(--yellow);
  border-radius: 999px; padding: 11px 24px; font-family: var(--type); font-size: 14px; line-height: 1.4;
}
/* pre-sale: no live cart, so the modal quantity picker is retired */
.modal__buy .qty { display: none; }

/* ============ FOOTER ============ */
.footer { background: var(--red-dark); color: var(--yellow); padding: 64px 56px 40px; overflow: hidden; }
.footer__top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__name { font-family: var(--display); font-size: 26px; letter-spacing: 0.5px; }
.footer__tag { font-family: var(--type); font-size: 13.5px; opacity: 0.85; }
.footer__cols { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__label { font-size: 12px; font-weight: 800; letter-spacing: 1.8px; opacity: 0.6; }
.footer__link { color: var(--yellow); text-decoration: none; font-size: 15px; font-weight: 700; transition: color 0.15s ease; }
.footer__link:hover { color: var(--yellow-bright); }
.footer__big {
  font-family: var(--display); font-size: clamp(54px, 9.5vw, 130px); line-height: 0.9;
  color: rgba(248,220,142,0.14); white-space: nowrap; user-select: none; letter-spacing: -2px;
}
.footer__bottom {
  border-top: 1px solid rgba(248,220,142,0.25); margin-top: 36px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; opacity: 0.7; font-weight: 600;
}

/* ============ CART DRAWER ============ */
.overlay {
  position: fixed; inset: 0; background: rgba(28,20,16,0.5); z-index: 50;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw);
  background: var(--yellow); z-index: 51; display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -10px 0 30px rgba(28,20,16,0.3);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 3px solid var(--red); }
.drawer__title { margin: 0; font-family: var(--display); font-weight: 400; font-size: 22px; color: var(--red); }
.drawer__close {
  font-family: var(--sans); background: transparent; border: 2px solid var(--red);
  border-radius: 999px; width: 36px; height: 36px; font-size: 17px; font-weight: 800;
  cursor: pointer; color: var(--red); display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background 0.15s ease, color 0.15s ease;
}
.drawer__close:hover { background: var(--red); color: var(--yellow); }

.drawer__state { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 32px; text-align: center; }
.drawer__check { width: 88px; height: 88px; border-radius: 50%; background: var(--red); color: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 38px; }
.drawer__done-title { margin: 10px 0 0; font-family: var(--display); font-weight: 400; font-size: 26px; color: var(--red); }
.drawer__done-p { margin: 0; font-family: var(--type); font-size: 15px; max-width: 30ch; line-height: 1.6; }
.drawer__empty-title { font-family: var(--display); font-size: 24px; color: var(--red); }
.drawer__empty-p { margin: 0; font-family: var(--type); font-size: 15px; opacity: 0.8; }

.drawer__list-wrap { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.drawer__ship { padding: 16px 24px 6px; }
.drawer__ship-label { font-family: var(--hand); font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.drawer__ship-bar { height: 10px; border: 2px solid var(--red); border-radius: 999px; background: var(--cream); overflow: hidden; }
.drawer__ship-fill { height: 100%; background: var(--red); border-radius: 999px; transition: width 0.4s ease; width: 0; }
.drawer__items { flex: 1; overflow-y: auto; padding: 14px 24px; display: flex; flex-direction: column; gap: 14px; }

.citem { display: flex; gap: 14px; align-items: center; background: var(--cream); border-radius: 14px; padding: 12px 14px; }
.citem__swatch { width: 52px; height: 52px; border-radius: 10px; color: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 20px; flex-shrink: 0; }
.citem__main { flex: 1; min-width: 0; }
.citem__name { font-weight: 800; font-size: 15px; line-height: 1.2; }
.citem__each { font-family: var(--type); font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.citem__qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.citem__qbtn {
  font-family: var(--sans); width: 26px; height: 26px; border-radius: 999px;
  border: 2px solid var(--red); background: transparent; font-size: 15px; font-weight: 800;
  cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; color: var(--red);
  transition: background 0.15s ease, color 0.15s ease;
}
.citem__qbtn:hover { background: var(--red); color: var(--yellow); }
.citem__qnum { font-size: 15px; font-weight: 800; min-width: 18px; text-align: center; }
.citem__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.citem__line { font-family: var(--display); font-size: 17px; color: var(--red); }
.citem__remove { font-family: var(--sans); background: none; border: none; font-size: 12px; font-weight: 700; color: var(--red-dark); cursor: pointer; text-decoration: underline; padding: 0; }

.drawer__foot { border-top: 3px solid var(--red); padding: 18px 24px 22px; background: var(--cream); }
.drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.drawer__subtotal span:first-child { font-size: 15px; font-weight: 800; }
.drawer__subtotal-val { font-family: var(--display); font-size: 24px; color: var(--red); }
.drawer__foot .btn--solid { padding: 17px; font-size: 16px; }
.drawer__fine { margin: 12px 0 0; text-align: center; font-family: var(--type); font-size: 12px; opacity: 0.7; }

/* ============ PRODUCT DETAIL MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal__overlay { position: absolute; inset: 0; background: rgba(28,20,16,0.55); }
.modal__card {
  position: relative; width: min(900px, 94vw); max-height: 90vh; overflow-y: auto;
  background: var(--cream); border: 3px solid var(--red); border-radius: 20px;
  display: grid; grid-template-columns: 1fr 1fr; animation: ugoFadeUp 0.3s ease both;
}
.modal__img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; border-right: 3px solid var(--red); background: var(--slot); }
.modal__body { padding: 36px 36px 32px; display: flex; flex-direction: column; gap: 16px; }
.modal__close {
  font-family: var(--sans); position: absolute; top: 16px; right: 16px;
  background: var(--cream); border: 2px solid var(--red); border-radius: 999px;
  width: 38px; height: 38px; font-size: 18px; font-weight: 800; cursor: pointer; color: var(--red);
  display: flex; align-items: center; justify-content: center; line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}
.modal__close:hover { background: var(--red); color: var(--yellow); }
.modal__tagrow { display: flex; gap: 10px; align-items: center; }
.modal__note { font-family: var(--hand); font-weight: 700; font-size: 19px; }
.modal__name { margin: 0; font-family: var(--display); font-weight: 400; font-size: 36px; line-height: 1; color: var(--red); }
.modal__sub { margin: 10px 0 0; font-family: var(--type); font-size: 15px; color: var(--muted); }
.modal__price { font-family: var(--display); font-size: 28px; color: var(--ink); }
.modal__desc { margin: 0; font-family: var(--type); font-size: 15px; line-height: 1.7; }
.modal__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.modal__buy { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 14px; }
.modal__add { flex: 1; padding: 16px; font-size: 15px; font-weight: 800; letter-spacing: 1.2px; font-family: var(--sans); }

.qty { display: flex; align-items: center; gap: 12px; border: 2px solid var(--red); border-radius: 999px; padding: 8px 14px; background: var(--yellow); }
.qty__btn { font-family: var(--sans); background: none; border: none; font-size: 19px; font-weight: 800; cursor: pointer; color: var(--red); padding: 0 4px; line-height: 1; }
.qty__num { font-size: 17px; font-weight: 800; min-width: 22px; text-align: center; }

/* ============ HEAT SCALE ============ */
.heat { display: inline-flex; align-items: center; gap: 5px; }
.heat__label { font-size: 10px; font-weight: 800; letter-spacing: 1.2px; color: var(--red); }
.heat__dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--red); background: transparent; box-sizing: border-box; }
.heat__dot.is-on { background: var(--red); }

/* ============ GUARANTEE ============ */
.guarantee { display: flex; align-items: center; gap: 12px; background: #FBEFCB; border: 2px dashed var(--red); border-radius: 14px; padding: 12px 14px; }
.guarantee__badge { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 14px; }
.guarantee__text { font-family: var(--type); font-size: 13.5px; line-height: 1.5; }
.guarantee__text strong { color: var(--red); }

/* ============ PAIRING LINE ============ */
.modal__pairing { margin: -4px 0 0; font-family: var(--type); font-size: 14px; color: var(--muted); }
.modal__pairing strong { color: var(--ink); }

/* ============ A11Y HELPERS ============ */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.card:focus-visible, .follow__tile:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }

/* ============ WORLD MAP SIGNUP ============ */
.mapsec { background: var(--red-deep); padding: 76px 56px 84px; position: relative; }
.mapsec__a1 { top: 44px; left: 60px; font-size: 30px; color: var(--yellow); }
.mapsec__head { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.mapsec__title { margin: 0 0 12px; font-family: var(--display); font-weight: 400; font-size: clamp(34px, 5vw, 60px); color: var(--yellow); line-height: 1; letter-spacing: -1px; }
.mapsec__p { margin: 0; font-family: var(--type); font-size: 16.5px; line-height: 1.65; color: var(--cream); }
.mapsec__stage { position: relative; }
.mapsec__map {
  width: 100%; height: clamp(300px, 52vw, 560px);
  background: rgba(28,20,16,0.14); border: 3px solid var(--red); border-radius: 18px;
  overflow: hidden;
}
.mapsec__count {
  margin: 18px auto 0; display: inline-block; width: 100%;
  text-align: center; font-family: var(--hand); font-weight: 700; font-size: 22px; color: var(--yellow);
}
.mapsec__hint { margin: 14px 0 0; text-align: center; font-family: var(--type); font-size: 14px; color: var(--cream); }
.mapsec__pick {
  font-family: var(--type); background: none; border: none; color: var(--yellow);
  font-size: 14px; cursor: pointer; text-decoration: underline; padding: 0;
}
.mapsec__pick:hover { color: var(--yellow-bright); }

/* jsvectormap theming */
.mapsec__map .jvm-zoom-btn {
  background: var(--red); color: var(--yellow); border-radius: 8px; width: 26px; height: 26px;
  line-height: 22px; font-weight: 800; left: 12px; box-shadow: 0 2px 0 rgba(28,20,16,0.3);
}
.mapsec__map .jvm-zoom-btn.jvm-zoomin { top: 12px; }
.mapsec__map .jvm-zoom-btn.jvm-zoomout { top: 44px; }
.jvm-tooltip {
  background: var(--ink); color: var(--yellow); border-radius: 999px; padding: 6px 14px;
  font-family: var(--sans); font-weight: 700; font-size: 12.5px; border: none;
}
.jvm-marker { cursor: pointer; }

/* ============ MAP SIGNUP MODAL ============ */
.smodal { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; padding: 20px; }
.smodal__overlay { position: absolute; inset: 0; background: rgba(28,20,16,0.55); }
.smodal__card {
  position: relative; width: min(440px, 94vw); max-height: 90vh; overflow-y: auto;
  background: var(--cream); border: 3px solid var(--red); border-radius: 20px;
  padding: 34px 30px 30px; text-align: center; animation: ugoFadeUp 0.3s ease both;
}
.smodal__close {
  font-family: var(--sans); position: absolute; top: 14px; right: 14px;
  background: var(--cream); border: 2px solid var(--red); border-radius: 999px;
  width: 36px; height: 36px; font-size: 17px; font-weight: 800; cursor: pointer; color: var(--red);
  display: flex; align-items: center; justify-content: center; line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}
.smodal__close:hover { background: var(--red); color: var(--yellow); }
.smodal__pin { font-size: 40px; line-height: 1; margin-bottom: 8px; }
.smodal__title { margin: 0 0 8px; font-family: var(--display); font-weight: 400; font-size: 27px; color: var(--red); line-height: 1.05; }
.smodal__sub { margin: 0 0 20px; font-family: var(--type); font-size: 15px; line-height: 1.55; color: var(--ink); }
.smodal__sub strong { color: var(--red); }
.smodal__form { display: flex; flex-direction: column; gap: 11px; }
.smodal__input {
  font-family: var(--type); border: 2px solid var(--red); border-radius: 999px;
  padding: 13px 20px; font-size: 15px; width: 100%;
  background: #FFF; color: var(--ink); outline: none;
}
.smodal__input:focus { border-color: var(--ink); }
.smodal__select { appearance: none; -webkit-appearance: none; background: #FFF url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C0291B' stroke-width='3'><path d='M6 9l6 6 6-6'/></svg>") no-repeat right 18px center; }
.smodal:not(.smodal--pick) .smodal__select { display: none; }
.smodal__hp { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }
.smodal__btn {
  font-family: var(--display); background: var(--red); color: var(--yellow);
  border: none; border-radius: 999px; padding: 15px; font-size: 16px; letter-spacing: 1px;
  cursor: pointer; transition: background 0.15s ease; margin-top: 4px;
}
.smodal__btn:hover { background: var(--red-dark); }
.smodal__btn:disabled { opacity: 0.7; cursor: default; }
.smodal__error {
  margin-top: 4px; background: var(--ink); color: var(--yellow);
  border-radius: 12px; padding: 9px 16px; font-family: var(--type); font-size: 13.5px; line-height: 1.4;
}
.smodal__done { padding: 10px 0 4px; }
.smodal__done-pin { font-size: 46px; animation: ugoPop 0.5s ease both; }
.smodal__done-title { margin: 6px 0 8px; font-family: var(--display); font-weight: 400; font-size: 26px; color: var(--red); }
.smodal__done-p { margin: 0; font-family: var(--type); font-size: 15px; line-height: 1.6; color: var(--ink); }

@media (max-width: 640px) {
  .mapsec { padding-left: 20px; padding-right: 20px; padding-top: 56px; }
  .smodal__card { padding: 28px 20px 24px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .shop, .who, .what, .follow, .list, .footer { padding-left: 34px; padding-right: 34px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px 64px; }
  .hero__media { padding-top: 60px; max-width: 460px; width: 100%; margin: 0 auto; }
  .hero__jar { height: 440px; }
  .who__inner { grid-template-columns: 1fr; gap: 40px; }
  .who__media { max-width: 380px; margin: 0 auto; }
  .modal__card { grid-template-columns: 1fr; }
  .modal__img { min-height: 280px; height: 280px; border-right: none; border-bottom: 3px solid var(--red); }
  .follow__grid { grid-template-columns: repeat(2, 1fr); }
}

/* nav collapses into a hamburger menu */
@media (max-width: 720px) {
  .nav { padding: 12px 20px; }
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--yellow); border-bottom: 3px solid var(--red);
    padding: 6px 0 10px; display: none;
    box-shadow: 0 14px 26px rgba(28,20,16,0.18);
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 14px 24px; font-size: 16px; }
}

@media (max-width: 640px) {
  .shop, .who, .what, .follow, .list, .footer { padding-left: 20px; padding-right: 20px; }
  .shop { padding-top: 56px; padding-bottom: 64px; }
  .who { padding-top: 60px; padding-bottom: 60px; }
  .what { padding-top: 64px; padding-bottom: 64px; }
  .follow { padding-top: 56px; padding-bottom: 56px; }
  .hero { padding: 28px 20px 52px; }
  .hero__media { padding-top: 64px; }
  .hero__jar { height: 360px; }
  .hero__title span { font-size: clamp(58px, 17vw, 92px); }
  .hero__lede { font-size: 16px; margin-top: 22px; }
  .scribble { font-size: 18px; }
  .scribble--tl { top: 2px; left: 6px; max-width: 150px; }
  .scribble--br { bottom: 16px; right: 4px; max-width: 128px; }
  .scribble__arrow { font-size: 22px; }
  .what__p { font-size: 16.5px; }
  .who__p { font-size: 16px; }
  .modal { padding: 12px; }
  .modal__body { padding: 24px 20px 24px; gap: 12px; }
  .modal__name { font-size: 30px; }
  .btn--solid, .btn--ghost { padding: 15px 26px; font-size: 15px; }
  .footer__top { gap: 24px; }
}

@media (max-width: 380px) {
  .hero__title span { font-size: 54px; }
  .nav__brand { font-size: 19px; }
  .btn-cart { padding: 9px 16px; font-size: 13px; }
  .nav__actions { gap: 12px; }
}
