:root {
  --ink: #08090b;
  --ink-soft: #0e1014;
  --panel: #12151a;
  --panel-strong: #171b21;
  --paper: #f4f0e8;
  --muted: #aaa7a1;
  --line: rgba(244, 240, 232, 0.16);
  --pink: #ff2b83;
  --cyan: #35c8d9;
  --acid: #dfe149;
  --mint: #6de0a8;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Work Sans", Arial, sans-serif;
  --shadow-hot: 8px 8px 0 rgba(255, 43, 131, 0.28);
  --shadow-cyan: 8px 8px 0 rgba(53, 200, 217, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 43, 131, 0.12), transparent 22rem),
    radial-gradient(circle at 92% 16%, rgba(53, 200, 217, 0.11), transparent 24rem),
    radial-gradient(rgba(244, 240, 232, 0.045) 1px, transparent 1.4px),
    var(--ink);
  background-size: auto, auto, 14px 14px, auto;
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  font-size: 4.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 0;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--hot {
  background: var(--pink);
  color: #160711;
  box-shadow: var(--shadow-hot);
}

.button--hot:hover,
.button--hot:focus-visible {
  box-shadow: var(--shadow-cyan);
}

.button--outline,
.button--quiet {
  background: rgba(8, 9, 11, 0.7);
  border-color: var(--cyan);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--cyan);
  color: #061013;
}

.button--quiet {
  border-color: var(--line);
}

.button--small {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 2rem;
  height: 2px;
  margin-left: 0.7rem;
  background: currentColor;
  transition: width 160ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 3rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 9, 11, 0.9);
  backdrop-filter: blur(12px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__box {
  width: min(100%, 460px);
  padding: 2.4rem;
  background:
    linear-gradient(135deg, rgba(255, 43, 131, 0.08), rgba(53, 200, 217, 0.06)),
    var(--panel);
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-hot);
  text-align: center;
}

.age-gate__brand {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.age-gate__title {
  margin-top: 0.7rem;
  font-size: 3.8rem;
}

.age-gate__copy {
  margin: 0.9rem auto 1.6rem;
  color: var(--muted);
  max-width: 22rem;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 72px;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(244, 240, 232, 0.12);
  background: rgba(8, 9, 11, 0.72);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  background: rgba(8, 9, 11, 0.94);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  color: var(--paper);
  text-decoration: none;
}

.brand-lockup__main {
  display: block;
  width: clamp(7rem, 10vw, 8.9rem);
  line-height: 0;
}

.brand-lockup__main img {
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 2px 0 rgba(255, 43, 131, 0.78));
}

.brand-lockup__sub {
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.site-nav a,
.header-cta {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 0.7rem 1.1rem;
  border: 2px solid var(--acid);
  color: var(--acid);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--acid);
  color: #101006;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.72) 0%, rgba(8, 9, 11, 0.42) 47%, rgba(8, 9, 11, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.08) 0%, rgba(8, 9, 11, 0.16) 58%, var(--ink) 100%),
    url("../assets/img/grifters-hero-jar-bg.webp") center / cover no-repeat;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1.8px);
  background-size: 12px 12px;
  opacity: 0.42;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  align-items: center;
  gap: 2rem;
  width: min(100%, 1220px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 8.5rem 2rem 5.2rem;
}

.hero__title {
  width: min(100%, 35rem);
  line-height: 0;
}

.hero__title img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0.26rem 0.26rem 0 rgba(255, 43, 131, 0.86))
    drop-shadow(0.5rem 0.5rem 0 rgba(53, 200, 217, 0.32));
}

.hero__line {
  max-width: 35rem;
  margin-top: 1rem;
  color: var(--pink);
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2.2rem;
  color: var(--mint);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(109, 224, 168, 0.45);
  background: rgba(8, 9, 11, 0.55);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  width: 42px;
  height: 42px;
  border: 2px solid var(--pink);
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  transform: rotate(45deg);
}

.ticker {
  overflow: hidden;
  border-top: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  background: var(--pink);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker__track span {
  padding: 0.68rem 2.2rem;
  color: #160711;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: 6.4rem 2rem;
  scroll-margin-top: 86px;
}

.section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: 3rem;
}

.section__intro p,
.packaging-shell__copy p,
.story-section__copy p,
.contact-panel p {
  max-width: 38rem;
  margin-top: 1.15rem;
  color: var(--muted);
}

.flower-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(53, 200, 217, 0.36);
  background: var(--panel);
}

.flower-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.08), rgba(8, 9, 11, 0.72));
  z-index: 1;
}

.flower-visual::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  width: 118px;
  height: 118px;
  background:
    linear-gradient(90deg, var(--pink) 0 18%, transparent 18% 35%, var(--pink) 35% 53%, transparent 53% 70%, var(--pink) 70% 88%, transparent 88%),
    transparent;
  opacity: 0.95;
  transform: skewY(-13deg);
  z-index: 2;
}

.flower-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.packaging-section {
  width: min(100%, 1280px);
  padding-top: 3.2rem;
}

.packaging-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 2.2rem;
  align-items: stretch;
  padding: 1.4rem;
  border: 2px solid rgba(223, 225, 73, 0.72);
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96), rgba(18, 21, 26, 0.92)),
    repeating-linear-gradient(0deg, rgba(244, 240, 232, 0.04) 0 1px, transparent 1px 22px);
}

.packaging-shell__media {
  display: grid;
  place-items: center;
  min-height: 540px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 43, 131, 0.18), transparent 18rem),
    radial-gradient(circle at 75% 70%, rgba(53, 200, 217, 0.14), transparent 20rem),
    #0b0d10;
}

.package-visual {
  position: relative;
  width: 100%;
  max-height: 620px;
  aspect-ratio: 1448 / 1086;
  padding: 1rem;
  outline: none;
}

.package-visual:focus-visible {
  box-shadow: 0 0 0 2px var(--cyan);
}

.package-visual__image {
  position: absolute;
  inset: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  max-height: 620px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.992);
  transition: opacity 760ms ease, transform 760ms ease;
}

.package-visual__image.is-active {
  opacity: 1;
  transform: none;
}

.packaging-shell__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 43, 131, 0.08), rgba(53, 200, 217, 0.045)),
    var(--ink-soft);
  border-left: 1px solid rgba(223, 225, 73, 0.38);
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0 1.7rem;
}

.package-meta span {
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(244, 240, 232, 0.18);
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.package-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(244, 240, 232, 0.22);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.package-tab:hover,
.package-tab:focus-visible,
.package-tab.is-active {
  border-color: var(--pink);
  background: var(--pink);
  color: #160711;
}

.section__bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.drop-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.drop-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 43, 131, 0.07), transparent 35%),
    var(--panel);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.drop-card:hover,
.drop-card:focus-within {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
}

.drop-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.38);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.55));
}

.drop-card h3 {
  color: var(--cyan);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 0.94;
}

.drop-card:nth-child(2) h3 {
  color: var(--mint);
}

.drop-card:nth-child(3) h3 {
  color: var(--acid);
}

.drop-card:nth-child(4) h3 {
  color: var(--pink);
}

.drop-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.55;
}

.drop-card span {
  display: block;
  margin-top: auto;
  padding-top: 0.9rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 3rem 2rem 6.4rem;
}

.story-section__image {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 43, 131, 0.35);
}

.story-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  outline: none;
}

.story-visual:focus-visible {
  box-shadow: inset 0 0 0 2px var(--cyan);
}

.story-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual__image.is-character {
  opacity: 0;
  animation: storyCharacterFade 7.5s ease-in-out infinite;
}

.story-visual:hover .story-visual__image.is-character,
.story-visual:focus-visible .story-visual__image.is-character {
  opacity: 1;
  animation-play-state: paused;
}

@keyframes storyCharacterFade {
  0%,
  34% {
    opacity: 0;
  }

  50%,
  72% {
    opacity: 1;
  }

  88%,
  100% {
    opacity: 0;
  }
}

.story-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background:
    radial-gradient(circle at 100% 0, rgba(53, 200, 217, 0.13), transparent 16rem),
    var(--panel);
  border: 1px solid rgba(53, 200, 217, 0.28);
  border-left: 0;
}

.contact-section {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border: 2px solid var(--pink);
  background:
    linear-gradient(90deg, rgba(255, 43, 131, 0.1), rgba(8, 9, 11, 0.1)),
    var(--panel);
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.signup-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(244, 240, 232, 0.28);
  border-radius: 0;
  background: #0b0d10;
  color: var(--paper);
  outline: none;
}

.signup-form input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 200, 217, 0.14);
}

.signup-message {
  color: var(--acid);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(160px, 0.4fr) minmax(280px, 1fr);
  gap: 2rem;
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--line);
  background: #050607;
}

.site-footer__logo {
  color: var(--mint);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.site-footer__brand a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--paper);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer__links {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.site-footer__links a {
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__brand a:hover,
.site-footer__brand a:focus-visible {
  color: var(--pink);
}

.site-footer__legal {
  color: #77736e;
  font-size: 0.78rem;
}

.site-footer__legal p + p {
  margin-top: 0.7rem;
}

.site-footer__legal strong {
  color: var(--mint);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 1.2rem;
  }

  .header-cta {
    display: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    padding-top: 7.6rem;
  }

  .section__grid,
  .story-section,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .packaging-shell__copy,
  .story-section__copy {
    border-left: 1px solid rgba(53, 200, 217, 0.28);
  }

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

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .drop-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0.65rem 1rem;
  }

  .brand-lockup__main {
    width: 7rem;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 120;
    display: grid;
    justify-items: start;
    padding: 1rem;
    background: rgba(8, 9, 11, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: min(100svh, 620px);
  }

  .hero__content {
    align-items: start;
    min-height: min(100svh, 620px);
    padding: 5.55rem 1.2rem 2.2rem;
  }

  .hero__backdrop {
    background:
      linear-gradient(180deg, rgba(8, 9, 11, 0.55) 0%, rgba(8, 9, 11, 0.24) 48%, rgba(8, 9, 11, 0.82) 100%),
      linear-gradient(90deg, rgba(8, 9, 11, 0.82) 0%, rgba(8, 9, 11, 0.46) 44%, rgba(8, 9, 11, 0.04) 100%),
      url("../assets/img/grifters-hero-jar-bg.webp") 80% bottom / min(920px, 236vw) auto no-repeat;
  }

  .hero__copy {
    width: min(17.6rem, 76vw);
    max-width: none;
    padding: 0;
  }

  .hero__title {
    width: min(100%, 16rem);
  }

  .hero__title img {
    filter:
      drop-shadow(0.18rem 0.18rem 0 rgba(255, 43, 131, 0.86))
      drop-shadow(0.34rem 0.34rem 0 rgba(53, 200, 217, 0.32));
  }

  .hero__line {
    max-width: 16.2rem;
    margin-top: 0.62rem;
    font-size: 1.24rem;
    text-shadow: 0 2px 0 rgba(3, 4, 5, 0.86), 0 0 18px rgba(3, 4, 5, 0.72);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.58rem;
    width: min(9.6rem, 100%);
    max-width: none;
    margin-top: 1.05rem;
  }

  .hero__actions .button {
    min-height: 43px;
    padding: 0.68rem 0.55rem;
    font-size: 0.96rem;
  }

  .hero-proof {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 4.8rem 1rem;
    scroll-margin-top: 76px;
  }

  .packaging-section {
    padding-top: 2rem;
  }

  .section__grid {
    gap: 2rem;
  }

  .flower-visual,
  .flower-visual img {
    min-height: 300px;
  }

  .packaging-shell {
    grid-template-columns: 1fr;
    padding: 0.75rem;
  }

  .packaging-shell__media {
    min-height: 0;
    padding: 1rem 0;
  }

  .package-visual {
    width: 100%;
    max-height: min(430px, 54svh);
    padding: 0.5rem;
  }

  .package-visual__image {
    inset: 0.5rem;
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    max-height: min(430px, 54svh);
  }

  .packaging-shell__copy {
    border-top: 1px solid rgba(53, 200, 217, 0.28);
    border-left: 0;
    padding: 1.1rem;
  }

  .packaging-shell__copy h2 {
    font-size: 2.3rem;
  }

  .packaging-shell__copy p {
    margin-top: 0.7rem;
    font-size: 0.9rem;
  }

  .package-meta {
    margin: 0.9rem 0 1rem;
    gap: 0.45rem;
  }

  .package-meta span {
    padding: 0.24rem 0.45rem;
    font-size: 0.92rem;
  }

  .package-tab {
    min-height: 38px;
    font-size: 0.95rem;
  }

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

  .drop-card {
    padding: 0.7rem;
  }

  .drop-card img {
    aspect-ratio: 1;
    margin-bottom: 0.6rem;
  }

  .drop-card h3 {
    font-size: 1.25rem;
  }

  .drop-card p {
    margin-top: 0.3rem;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .drop-card span {
    padding-top: 0.6rem;
    font-size: 0.85rem;
  }

  .story-section {
    padding: 1rem 1rem 4.8rem;
  }

  .story-section__image {
    min-height: 300px;
  }

  .story-section__copy {
    padding: 1.6rem;
  }

  .contact-panel {
    padding: 1.25rem;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 2.2rem 1rem;
  }
}

@media (max-width: 420px) {
  .hero__title {
    width: min(100%, 15.8rem);
  }

  .age-gate__box {
    padding: 1.6rem;
  }

  .age-gate__title {
    font-size: 3rem;
  }

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

  .package-tab {
    min-width: 0;
  }
}

/* --- Interactivity pass: sticker tilts, hovers, idle motion ------------- */
/* Everything below is neutralized by the prefers-reduced-motion block. */

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) rotate(-1deg);
}

.button:active {
  transform: translateY(1px) rotate(0deg);
}

.header-cta {
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: rotate(-1.5deg);
  box-shadow: 4px 4px 0 rgba(223, 225, 73, 0.3);
}

.package-tab {
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.package-tab:hover,
.package-tab:focus-visible {
  transform: translateY(-2px) rotate(-1.2deg);
  box-shadow: 4px 4px 0 rgba(255, 43, 131, 0.35);
}

.package-visual {
  transition: transform 320ms ease;
  transform-style: preserve-3d;
}

.packaging-shell__media {
  perspective: 900px;
}

.drop-card {
  overflow: hidden;
}

.drop-card img {
  transition: transform 260ms ease;
}

.drop-card:hover img,
.drop-card:focus-within img {
  transform: scale(1.06) rotate(-2deg);
}

.drop-card span {
  transition: color 160ms ease, letter-spacing 160ms ease;
}

.drop-card:hover span,
.drop-card:focus-within span {
  color: var(--pink);
  letter-spacing: 0.06em;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.hero-proof span {
  transition: transform 160ms ease, border-color 160ms ease;
}

.hero-proof span:hover {
  transform: rotate(-2deg);
  border-color: var(--mint);
}

.flower-visual img {
  transition: transform 420ms ease;
}

.flower-visual:hover img {
  transform: scale(1.045);
}

.hero__title img {
  animation: neonFlicker 9s steps(1, end) infinite;
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  41% { opacity: 1; }
  42% { opacity: 0.82; }
  43% { opacity: 1; }
  45% { opacity: 0.88; }
  46% { opacity: 1; }
  81% { opacity: 1; }
  82% { opacity: 0.86; }
  83% { opacity: 1; }
}

.scroll-cue {
  animation: cueBob 2.4s ease-in-out infinite;
  transition: border-color 160ms ease;
}

.scroll-cue:hover {
  border-color: var(--cyan);
}

@keyframes cueBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

.hero__backdrop {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
