:root {
  --paper: #f4ead2;
  --paper-strong: #fff8df;
  --ink: #050807;
  --muted: #a5b6a8;
  --teal: #083f3b;
  --teal-dark: #031513;
  --acid: #39ff14;
  --red: #ff3127;
  --cream: #f3e3bb;
  --berry: #d24a38;
  --banana: #e8c75c;
  --line: rgba(57, 255, 20, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --pixel: "Press Start 2P", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden;
}

body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  margin: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
  color: var(--paper-strong);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

main {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
  scroll-behavior: smooth;
}

.page-anchor {
  display: block;
  height: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 248, 223, 0.08);
  background: rgba(0, 0, 0, 0.94);
  color: var(--paper-strong);
  backdrop-filter: blur(16px);
}

.brand,
.header-actions,
.hero-actions,
.drawer-head,
.cart-line,
.cart-total,
.quantity-row,
.check-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-family: var(--pixel);
  font-size: 13px;
  line-height: 1.35;
}

.brand small {
  color: rgba(57, 255, 20, 0.72);
  font-size: 12px;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.top-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 248, 230, 0.72);
  font-size: 14px;
}

.top-nav a:hover {
  background: rgba(57, 255, 20, 0.09);
  color: var(--acid);
}

.header-actions,
.hero-actions {
  gap: 10px;
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.cart-button,
.filter-btn,
.icon-btn,
.qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    color 0.16s ease;
}

.primary-btn:disabled,
.secondary-btn:disabled,
.ghost-btn:disabled,
.cart-button:disabled,
.filter-btn:disabled,
.icon-btn:disabled,
.qty-btn:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.primary-btn:hover:not(:disabled),
.secondary-btn:hover:not(:disabled),
.ghost-btn:hover:not(:disabled),
.cart-button:hover:not(:disabled),
.filter-btn:hover:not(:disabled),
.icon-btn:hover:not(:disabled),
.qty-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.primary-btn {
  padding: 0 16px;
  background: var(--acid);
  color: var(--ink);
  border-color: rgba(57, 255, 20, 0.22);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.12);
  font-weight: 800;
}

.secondary-btn {
  padding: 0 16px;
  background: rgba(5, 8, 7, 0.34);
  color: var(--paper-strong);
  border-color: rgba(255, 248, 223, 0.18);
  font-weight: 800;
}

.ghost-btn {
  padding: 0 13px;
  background: transparent;
  color: rgba(255, 248, 230, 0.82);
  border-color: rgba(255, 248, 230, 0.18);
}

.cart-button {
  position: relative;
  padding: 0 12px;
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 800;
}

.cart-button b {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
}

.icon-btn,
.qty-btn {
  width: 40px;
  min-width: 40px;
  padding: 0;
  background: rgba(23, 32, 29, 0.06);
  color: var(--ink);
  border-color: var(--line);
}

.icon-btn svg,
.qty-btn svg,
.primary-btn svg,
.secondary-btn svg,
.ghost-btn svg,
.cart-button svg,
.legal-list svg,
.product-meta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(700px, calc(88vh - 76px));
  overflow: hidden;
  background: #000;
  color: var(--paper-strong);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 7, 0.98) 0%, rgba(5, 8, 7, 0.92) 42%, rgba(5, 8, 7, 0.34) 70%, rgba(5, 8, 7, 0.08) 100%),
    radial-gradient(circle at 18% 48%, rgba(57, 255, 20, 0.08), transparent 28%);
}

.hero::after {
  z-index: 3;
  opacity: 0.18;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: screen;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 620px;
  padding: clamp(46px, 7vw, 92px) clamp(22px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--pixel);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.age-panel .eyebrow {
  color: var(--acid);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  color: var(--paper-strong);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 950;
  line-height: 0.95;
  text-shadow: none;
}

h2 {
  font-size: clamp(28px, 4.5vw, 52px);
}

h3 {
  font-size: 18px;
}

.lead {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(255, 248, 230, 0.78);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  min-height: min(700px, calc(88vh - 76px));
  animation: heroDrift 10s ease-in-out infinite alternate;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: min(700px, calc(88vh - 76px));
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.growth-scroll {
  position: relative;
  min-height: 220vh;
  background: #000;
}

.growth-sticky {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  isolation: isolate;
  height: calc(100vh - 76px);
  height: calc(100dvh - 76px);
  min-height: 460px;
  overflow: hidden;
  background: #000;
}

.growth-video {
  position: relative;
  z-index: 1;
  width: min(72vw, 720px);
  max-width: calc(100vw - 32px);
  max-height: min(76vh, 720px);
  object-fit: contain;
  background: #000;
}

.growth-text-cloud {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.growth-copy-item {
  position: absolute;
  left: var(--x);
  top: var(--y);
  max-width: min(280px, 34vw);
  opacity: var(--visible, 0);
  transform:
    translate(-50%, -50%)
    translateY(calc((1 - var(--visible, 0)) * 14px))
    scale(calc(0.985 + var(--visible, 0) * 0.015));
  color: rgba(255, 248, 223, calc(0.34 + var(--visible, 0) * 0.58));
  font-family: var(--pixel);
  font-size: clamp(9px, 1.05vw, 13px);
  line-height: 1.7;
  text-align: center;
  text-shadow:
    0 0 12px rgba(57, 255, 20, calc(var(--visible, 0) * 0.32)),
    0 2px 14px rgba(0, 0, 0, 0.92);
  transition:
    opacity 0.12s linear,
    transform 0.12s linear,
    color 0.12s linear;
  white-space: normal;
}

.growth-copy-item::after {
  display: block;
  width: 28px;
  height: 1px;
  margin: 9px auto 0;
  background: rgba(57, 255, 20, calc(var(--visible, 0) * 0.42));
  content: "";
}

.item-principle {
  --x: 50%;
  --y: 14%;
}

.item-direct {
  --x: 22%;
  --y: 28%;
}

.item-genetics {
  --x: 77%;
  --y: 28%;
}

.item-delivery {
  --x: 20%;
  --y: 52%;
}

.item-service {
  --x: 80%;
  --y: 51%;
}

.item-talk {
  --x: 26%;
  --y: 72%;
}

.item-pack {
  --x: 19%;
  --y: 84%;
}

.item-souvenir {
  --x: 81%;
  --y: 84%;
}

.item-clear {
  --x: 50%;
  --y: 91%;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background: #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-text {
  display: grid;
  gap: 18px;
  max-width: 820px;
  color: rgba(255, 248, 230, 0.72);
  font-size: 18px;
}

.about-text p {
  margin: 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.filters {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 7, 0.56);
}

.filter-btn {
  min-height: 36px;
  padding: 0 13px;
  background: transparent;
  color: rgba(255, 248, 230, 0.72);
  border-color: transparent;
  font-weight: 800;
}

.filter-btn.active {
  background: var(--acid);
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 248, 223, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 248, 223, 0.035), transparent 42%),
    rgba(5, 8, 7, 0.74);
  box-shadow: 0 0 0 1px rgba(255, 248, 230, 0.02);
  animation: cardIn 0.46s ease both;
}

.product-card:hover {
  border-color: rgba(57, 255, 20, 0.32);
  transform: translateY(-2px);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}

.product-visual {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.48;
  border: 1px solid rgba(255, 248, 223, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 50%, rgba(57, 255, 20, 0.08), transparent 38%),
    linear-gradient(135deg, rgba(57, 255, 20, 0.045), rgba(255, 49, 39, 0.025)),
    #07100e;
  overflow: hidden;
}

.product-visual.has-image {
  aspect-ratio: 1 / 0.9;
  background: #020504;
}

.product-visual.has-image img {
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98) contrast(1.04);
}

.visual-object {
  position: relative;
  width: 56px;
  height: 74px;
  border: 1px solid rgba(255, 248, 223, 0.24);
  border-radius: 6px;
  background: linear-gradient(145deg, rgba(255, 248, 223, 0.9), rgba(218, 198, 152, 0.74));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.visual-object::before {
  position: absolute;
  inset: 16px 11px;
  border: 1px solid rgba(5, 8, 7, 0.28);
  border-radius: 50%;
  content: "";
}

.visual-object::after {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-dark);
  content: "";
  transform: translateX(-50%);
}

.product-visual.merch .visual-object {
  width: 72px;
  height: 54px;
  border-radius: 12px 12px 7px 7px;
  background:
    radial-gradient(circle at 50% 42%, rgba(57, 255, 20, 0.22) 0 12px, transparent 13px),
    #101a17;
}

.product-visual.merch .visual-object::before {
  inset: auto;
  left: 50%;
  top: -8px;
  width: 28px;
  height: 18px;
  border: 1px solid rgba(255, 248, 223, 0.2);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.product-visual.merch .visual-object::after {
  display: none;
}

.product-info {
  display: grid;
  gap: 8px;
}

.product-info p {
  min-height: 58px;
  margin: 0;
  color: rgba(255, 248, 230, 0.62);
  font-size: 14px;
}

.product-spec {
  color: rgba(57, 255, 20, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.price {
  display: block;
  color: var(--paper-strong);
  font-size: 22px;
  font-weight: 950;
}

.price-wrap {
  display: grid;
  gap: 2px;
}

.price-wrap small {
  color: rgba(255, 248, 230, 0.54);
  font-size: 11px;
  font-weight: 800;
}

.add-btn {
  position: relative;
  flex: 0 0 auto;
  isolation: isolate;
  min-width: 124px;
  min-height: 32px;
  padding: 0 11px 1px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #f9ffb7;
  font-family: var(--pixel);
  font-size: 10px;
  font-weight: 900;
  text-shadow: none;
}

.add-btn-layer {
  position: absolute;
  inset: -7px -9px -7px -9px;
  z-index: 0;
  display: grid;
  place-items: center;
  color: #f5f8c7;
  pointer-events: none;
  transform-origin: 13% 50%;
}

.add-btn-layer::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/button-leaf-pixel.png?v=1") center / 100% 100% no-repeat;
  content: "";
  image-rendering: pixelated;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.add-btn-layer span {
  position: relative;
  z-index: 1;
  display: inline-block;
  transform: translateY(0.5px);
  line-height: 1;
  -webkit-text-stroke: 0;
  text-shadow:
    1px 0 0 rgba(0, 4, 2, 1),
    -1px 0 0 rgba(0, 4, 2, 1),
    0 1px 0 rgba(0, 4, 2, 1),
    0 -1px 0 rgba(0, 4, 2, 0.9),
    1px 1px 0 rgba(0, 4, 2, 0.9),
    0 0 3px rgba(249, 255, 183, 0.32);
  white-space: nowrap;
}

.add-btn:hover,
.add-btn:focus-visible {
  background: transparent;
  box-shadow: none;
  color: #f9ffb7;
}

.add-btn:hover .add-btn-layer,
.add-btn:focus-visible .add-btn-layer {
  animation: leafWobble 0.62s ease-in-out both;
}

.add-btn:hover .add-btn-layer::before,
.add-btn:focus-visible .add-btn-layer::before {
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.3));
}

.legal-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background: #000;
  color: var(--paper-strong);
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.legal-content {
  display: grid;
  gap: 14px;
}

.legal-statement {
  padding: clamp(18px, 2.8vw, 26px);
  border: 1px solid rgba(52, 255, 31, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(52, 255, 31, 0.1), rgba(255, 248, 230, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 248, 230, 0.04);
}

.legal-statement p {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 248, 230, 0.84);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.7;
}

.legal-list article {
  padding: 18px;
  border: 1px solid rgba(255, 248, 230, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 248, 230, 0.05);
}

.legal-list svg {
  color: var(--banana);
}

.legal-list h3 {
  margin-top: 14px;
}

.legal-list p {
  margin: 10px 0 0;
  color: rgba(255, 248, 230, 0.68);
}

.drawer,
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
}

.drawer {
  display: none;
  pointer-events: none;
  background: rgba(11, 17, 15, 0.58);
  backdrop-filter: blur(8px);
}

.drawer.open {
  display: block;
  pointer-events: auto;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(480px, 100vw);
  height: 100%;
  padding: 24px;
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.drawer-head {
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 18px 2px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 234, 210, 0.58);
}

.cart-line-main {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.cart-line h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.cart-line small {
  color: var(--muted);
  line-height: 1.25;
}

.quantity-row {
  gap: 6px;
  justify-content: flex-start;
  margin-top: 0;
}

.quantity-row strong {
  min-width: 24px;
  text-align: center;
}

.cart-line-price {
  align-self: start;
  white-space: nowrap;
}

.cart-total {
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.checkout-note {
  margin: -4px 0 12px;
  color: rgba(5, 8, 7, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: #3b453f;
  font-size: 13px;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(23, 32, 29, 0.18);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 42px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 82px;
  padding: 10px 12px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 91, 88, 0.14);
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 700;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.full {
  width: 100%;
}

.age-gate {
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(57, 255, 20, 0.08), transparent 28%),
    linear-gradient(145deg, #050807, #071714 62%, #050807);
}

.age-gate.hidden {
  display: none;
  pointer-events: none;
}

.age-panel {
  width: min(360px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(57, 255, 20, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 8, 7, 0.92);
  color: var(--paper-strong);
  box-shadow: var(--shadow);
}

.age-panel h1 {
  color: var(--acid);
  font-family: var(--pixel);
  font-size: 38px;
  line-height: 1;
}

.age-panel p {
  margin: 12px 0 0;
  color: rgba(255, 248, 230, 0.72);
  font-size: 14px;
}

.age-panel .check-row {
  margin: 18px 0;
  color: rgba(255, 248, 230, 0.86);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  display: none;
  width: min(420px, calc(100vw - 32px));
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  border: 1px solid rgba(57, 255, 20, 0.24);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 800;
}

@keyframes smilePulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(57, 255, 20, 0.16);
  }

  50% {
    box-shadow: 0 0 34px rgba(57, 255, 20, 0.38);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.025) translate3d(-8px, -4px, 0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes leafWobble {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  22% {
    transform: rotate(-3deg) translateY(-1px);
  }

  48% {
    transform: rotate(2.4deg) translateY(0);
  }

  72% {
    transform: rotate(-1.2deg) translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.toast.show {
  display: block;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    z-index: 2;
    padding-bottom: 30px;
  }

  .hero-art {
    inset: 0;
    width: auto;
    min-height: 36vh;
    opacity: 0.8;
  }

  .hero-art img {
    min-height: 36vh;
    max-height: 520px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .top-nav {
    display: none;
  }

  .ghost-btn span,
  .cart-button span {
    display: none;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .ghost-btn,
  .cart-button {
    width: 72px;
    min-width: 72px;
    padding: 0;
  }

  .cart-button {
    justify-content: space-between;
    gap: 8px;
    height: 46px;
    min-height: 46px;
    padding: 0 8px;
    border-color: rgba(255, 248, 223, 0.18);
    border-radius: 10px;
    background: var(--paper-strong);
    color: var(--ink);
    box-shadow:
      inset 0 0 0 1px rgba(255, 248, 230, 0.18),
      0 8px 24px rgba(0, 0, 0, 0.22);
  }

  .cart-button b {
    position: static;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    font-size: 11px;
    line-height: 1;
  }

  .cart-button svg {
    width: 19px;
    height: 19px;
  }

  .about-band,
  .legal-band {
    grid-template-columns: 1fr;
  }

  .legal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 560px;
    padding-bottom: 132px;
  }

  .hero-art {
    min-height: 100%;
    opacity: 0.72;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .filters {
    width: 100%;
    overflow-x: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand strong {
    max-width: min(46vw, 220px);
    font-size: 11px;
    line-height: 1.45;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-copy {
    padding: 46px 18px 120px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .hero-art {
    opacity: 0.62;
  }

  .growth-scroll {
    min-height: 200vh;
  }

  .growth-sticky {
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    min-height: 360px;
  }

  .growth-video {
    width: min(88vw, 560px);
    max-height: 70vh;
  }

  .hero-actions > * {
    width: 100%;
  }

  .product-grid,
  .legal-list {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 14px;
  }

  .drawer-panel {
    grid-template-rows: auto auto auto auto;
    overflow-y: auto;
    padding: 18px;
  }

  .cart-items {
    overflow: visible;
    padding: 14px 0;
  }

  .cart-line {
    gap: 10px;
    padding: 12px;
  }

  .cart-line-price {
    font-size: 16px;
  }

  .cart-total {
    padding: 14px 0 10px;
  }

  .checkout-note {
    margin: 0 0 10px;
    font-size: 12px;
  }

  .checkout-form {
    gap: 10px;
  }

  label {
    gap: 5px;
  }

  input,
  select {
    height: 40px;
  }

  .qty-btn {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
  }

  .quantity-row {
    gap: 5px;
  }

  textarea {
    min-height: 72px;
  }
}
