:root {
  --ink: #17163f;
  --ink-deep: #0f0d2b;
  --cream: #fff7d6;
  --paper: #fffdf3;
  --butter: #ffda1a;
  --orange: #ff6a00;
  --coral: #ff5c35;
  --pink: #e0006f;
  --blue: #1769ff;
  --teal: #008478;
  --mint: #64dfb5;
  --purple: #7b3cff;
  --red: #e83b34;
  --white: #fff;
  --border: 3px solid var(--ink);
  --shadow-sm: 5px 5px 0 var(--ink);
  --shadow-md: 9px 9px 0 var(--ink);
  --shadow-lg: 14px 14px 0 var(--ink);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 42px;
  --page: min(1520px, calc(100vw - 48px));
  --font-display: "Shrikhand", "Arial Black", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-mono: "Space Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.cart-open {
  overflow: hidden;
}

button,
a,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

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

::selection {
  background: var(--pink);
  color: var(--white);
}

:focus-visible {
  outline: 4px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 7px var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border: var(--border);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.noscript-banner {
  padding: 12px 18px;
  border-bottom: var(--border);
  background: var(--butter);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.noscript-banner a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.announcement {
  position: relative;
  z-index: 70;
  overflow: hidden;
  height: 36px;
  border-bottom: var(--border);
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 33px;
  text-transform: uppercase;
}

.announcement__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

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

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - 1520px) / 2));
  border-bottom: var(--border);
  background: rgba(255, 247, 214, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 11px;
  text-decoration: none;
}

.brand__duck {
  width: 54px;
  height: 54px;
  padding: 6px;
  transform: rotate(-4deg);
  border: var(--border);
  border-radius: 50%;
  background: var(--butter);
  fill: var(--ink);
  transition: transform 180ms ease;
}

.brand:hover .brand__duck {
  transform: rotate(7deg) scale(1.04);
}

.brand__duck .brand__bill {
  fill: var(--coral);
}

.brand__words {
  display: grid;
  line-height: 1;
}

.brand__words strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand__words small {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 10px 12px 10px 18px;
  border: var(--border);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.cart-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.cart-count {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
}

.cart-count.is-bumped {
  animation: cart-count-bump 320ms cubic-bezier(0.2, 1.7, 0.5, 1);
}

@keyframes cart-count-bump {
  50% {
    transform: rotate(9deg) scale(1.22);
    background: var(--mint);
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 5vw, 86px);
  overflow: hidden;
  padding: clamp(70px, 8vw, 130px) max(24px, calc((100vw - 1520px) / 2));
  border-bottom: var(--border);
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 7%, var(--pink) 0 5%, transparent 5.2%),
    radial-gradient(circle at 45% 93%, var(--orange) 0 8%, transparent 8.2%),
    linear-gradient(120deg, var(--butter) 0 58%, var(--coral) 58% 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 11%;
  left: 41%;
  width: 150px;
  height: 150px;
  transform: rotate(18deg);
  background:
    linear-gradient(var(--ink) 0 0) 50% 0 / 5px 100% no-repeat,
    linear-gradient(90deg, var(--ink) 0 0) 0 50% / 100% 5px no-repeat;
  content: "";
  opacity: 0.18;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -160px;
  width: 470px;
  height: 470px;
  border: 55px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 7.1vw, 126px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.88;
}

.hero h1 em {
  display: inline-block;
  padding: 0 0.15em 0.06em;
  transform: rotate(-2deg);
  border: 4px solid var(--ink);
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--white);
  font-style: normal;
  line-height: 0.88;
}

.hero__lede {
  max-width: 590px;
  margin: 31px 0 0;
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 700;
  line-height: 1.42;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--ink);
}

.button:disabled {
  cursor: progress;
  opacity: 0.76;
}

.button--ink {
  background: var(--ink);
  color: var(--white);
}

.button--pink {
  background: var(--pink);
  color: var(--white);
}

.button--blue {
  background: var(--blue);
  color: var(--white);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 3px solid var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.text-link span {
  font-size: 22px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero__facts {
  display: flex;
  max-width: 590px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero__facts li {
  display: grid;
  flex: 1;
  padding-right: 16px;
}

.hero__facts li + li {
  padding-left: 22px;
  border-left: 2px solid var(--ink);
}

.hero__facts strong {
  font-family: var(--font-display);
  font-size: clamp(25px, 2.2vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.hero__facts span {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__footnote {
  margin: 24px 0 0;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.76;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero__image-wrap {
  position: relative;
  overflow: hidden;
  transform: rotate(1.5deg);
  border: 5px solid var(--ink);
  border-radius: 48% 52% 38% 62% / 43% 38% 62% 57%;
  box-shadow:
    15px 15px 0 var(--ink),
    29px 29px 0 var(--blue);
  background: var(--coral);
}

.hero__image-wrap img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.image-caption,
.product-gallery figcaption,
.ingredients-image figcaption,
.ritual-image figcaption,
.founder-card figcaption,
.banquet-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  transform: rotate(-1deg);
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__burst {
  position: absolute;
  z-index: 4;
  top: -44px;
  right: -22px;
  display: grid;
  width: 145px;
  height: 145px;
  place-content: center;
  transform: rotate(10deg);
  background: var(--butter);
  color: var(--ink);
  text-align: center;
  clip-path: polygon(
    50% 0%,
    59% 20%,
    75% 7%,
    78% 29%,
    98% 26%,
    84% 44%,
    100% 53%,
    78% 58%,
    87% 78%,
    66% 70%,
    61% 96%,
    48% 77%,
    31% 94%,
    30% 70%,
    7% 80%,
    19% 59%,
    0 50%,
    21% 42%,
    6% 25%,
    29% 28%,
    26% 6%,
    43% 20%
  );
}

.hero__burst::after {
  position: absolute;
  inset: 5px;
  z-index: -1;
  background: var(--pink);
  content: "";
  clip-path: inherit;
}

.hero__burst span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
}

.hero__burst small {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.pat-path {
  position: absolute;
  z-index: 4;
  bottom: -70px;
  left: -58px;
  width: 180px;
  overflow: visible;
  pointer-events: none;
}

.pat-path path {
  fill: none;
  stroke: var(--ink);
  stroke-dasharray: 7 8;
  stroke-linecap: round;
  stroke-width: 4px;
}

.flying-pat {
  position: absolute;
  z-index: 5;
  bottom: -50px;
  left: 64px;
  width: 38px;
  height: 38px;
  transform: rotate(12deg);
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--butter);
  box-shadow: 4px 4px 0 var(--ink);
  animation: pat-bob 2.8s ease-in-out infinite;
}

.flying-pat::after {
  position: absolute;
  inset: 9px;
  border: 2px solid rgba(23, 22, 63, 0.28);
  border-radius: 50% 45% 50% 45%;
  content: "";
}

@keyframes pat-bob {
  50% {
    transform: translate(8px, -13px) rotate(24deg);
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--border);
  background: var(--blue);
  color: var(--white);
}

.trust-strip article {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 22px;
}

.trust-strip article + article {
  border-left: 2px solid var(--ink);
}

.trust-strip__icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  transform: rotate(-4deg);
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--butter);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
}

.trust-strip article:nth-child(2) .trust-strip__icon {
  transform: rotate(5deg);
  background: var(--pink);
  color: var(--white);
}

.trust-strip article:nth-child(3) .trust-strip__icon {
  background: var(--mint);
}

.trust-strip article:nth-child(4) .trust-strip__icon {
  transform: rotate(5deg);
  background: var(--orange);
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  font-size: 16px;
  line-height: 1.1;
}

.trust-strip small {
  margin-top: 4px;
  font-size: 12px;
  opacity: 1;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(440px, 0.86fr);
  gap: clamp(50px, 7vw, 110px);
  padding: clamp(80px, 9vw, 140px) max(24px, calc((100vw - 1450px) / 2));
  border-bottom: var(--border);
  background:
    radial-gradient(var(--pink) 0 3px, transparent 3.5px) 0 0 / 35px 35px,
    var(--paper);
}

.product-gallery {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.25fr 0.75fr;
  align-self: start;
  align-items: end;
  gap: 22px;
}

.product-gallery figure {
  position: relative;
  margin: 0;
  border: var(--border);
  background: var(--coral);
}

.product-gallery__main {
  overflow: hidden;
  transform: rotate(-1.5deg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.product-gallery__main img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
}

.product-gallery__side {
  overflow: hidden;
  transform: translateY(50px) rotate(2deg);
  border-radius: 50% 50% 20px 20px;
  box-shadow: 9px 9px 0 var(--blue);
}

.product-gallery__side img {
  width: 100%;
  aspect-ratio: 0.79;
  object-fit: cover;
}

.product-gallery figcaption {
  right: 12px;
  bottom: 12px;
  left: 12px;
  text-align: center;
}

.buy-box {
  position: sticky;
  top: 118px;
  align-self: start;
  padding: clamp(28px, 3.5vw, 52px);
  border: 4px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--butter);
  box-shadow: var(--shadow-lg);
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
}

.rating > span {
  color: var(--pink);
  letter-spacing: 0.08em;
}

.rating a {
  font-size: 13px;
  font-weight: 800;
}

.buy-box h2,
.ingredients-copy h2,
.ritual-heading h2,
.reaction-copy h2,
.benefits-heading h2,
.reviews-heading h2,
.origin-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.buy-box h2 {
  font-size: clamp(45px, 4.3vw, 68px);
}

.buy-box__description {
  margin: 22px 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.stock > span {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 2px 2px 0 var(--ink);
}

.product-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.product-details div {
  min-width: 0;
  padding: 12px 10px;
}

.product-details div + div {
  border-left: 2px solid var(--ink);
}

.product-details dt {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-details dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 900;
}

.pack-picker {
  display: grid;
  gap: 10px;
  margin: 28px 0 22px;
  padding: 0;
  border: 0;
}

.pack-picker legend {
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pack-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border: 2px solid var(--ink);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  transition:
    transform 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
}

.pack-option:hover {
  transform: translateX(3px);
  background: var(--white);
}

.pack-option:has(input:checked) {
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.pack-option input {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--pink);
}

.pack-option span {
  display: grid;
}

.pack-option strong {
  font-size: 15px;
}

.pack-option small {
  font-size: 11px;
  font-weight: 600;
}

.pack-option b {
  font-family: var(--font-mono);
  font-size: 14px;
}

.checkout-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.checkout-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.ingredients-section {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  overflow-x: hidden;
  overflow-x: clip;
  padding: clamp(80px, 9vw, 150px) max(24px, calc((100vw - 1400px) / 2));
  border-bottom: var(--border);
  background:
    linear-gradient(90deg, rgba(255, 218, 26, 0.18) 1px, transparent 1px) 0 0 /
      42px 42px,
    linear-gradient(rgba(255, 218, 26, 0.18) 1px, transparent 1px) 0 0 / 42px
      42px,
    var(--teal);
  color: var(--white);
}

.ingredients-copy h2 {
  max-width: 850px;
  font-size: clamp(54px, 6.4vw, 104px);
}

.ingredients-intro {
  max-width: 650px;
  margin: 23px 0 38px;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 700;
}

.ingredient-list {
  display: grid;
  max-width: 700px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredient-list li {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) 1fr;
  gap: 25px;
  padding: 13px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.48);
}

.ingredient-list li:last-child {
  border-bottom: 2px solid rgba(255, 255, 255, 0.48);
}

.ingredient-list strong {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ingredient-list span {
  font-weight: 700;
}

.allergen {
  display: inline-block;
  margin: 30px 0 0;
  padding: 11px 14px;
  transform: rotate(-1deg);
  border: 2px solid var(--ink);
  background: var(--butter);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.ingredients-image {
  position: relative;
  margin: 0;
  transform: rotate(2deg);
}

.ingredients-image::before {
  position: absolute;
  inset: -15px;
  z-index: 0;
  transform: rotate(-4deg);
  border: 4px solid var(--ink);
  border-radius: 46% 54% 50% 50% / 55% 42% 58% 45%;
  background: var(--pink);
  content: "";
}

.ingredients-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 760px;
  border: 4px solid var(--ink);
  border-radius: 46% 54% 50% 50% / 55% 42% 58% 45%;
  box-shadow: 13px 13px 0 var(--ink);
  object-fit: cover;
}

.ritual-section {
  padding: clamp(80px, 9vw, 145px) max(24px, calc((100vw - 1450px) / 2));
  border-bottom: var(--border);
  background:
    radial-gradient(circle at 87% 13%, var(--pink) 0 9%, transparent 9.2%),
    var(--orange);
}

.ritual-heading {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(220px, 0.35fr) 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 55px;
}

.ritual-heading .eyebrow {
  margin-bottom: 9px;
}

.ritual-heading h2 {
  font-size: clamp(55px, 6.4vw, 103px);
}

.ritual-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.ritual-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ritual-steps li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-top: 3px solid var(--ink);
}

.ritual-steps li:last-child {
  border-bottom: 3px solid var(--ink);
}

.ritual-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  transform: rotate(-5deg);
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--butter);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
}

.ritual-steps li:nth-child(2) .ritual-number {
  transform: rotate(5deg);
  background: var(--blue);
  color: var(--white);
}

.ritual-steps li:nth-child(3) .ritual-number {
  background: var(--pink);
  color: var(--white);
}

.ritual-steps li:nth-child(4) .ritual-number {
  transform: rotate(4deg);
  background: var(--mint);
}

.ritual-steps h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.ritual-steps p {
  max-width: 420px;
  margin: 6px 0 0;
  font-weight: 650;
}

.ritual-image {
  position: relative;
  margin: 0;
  transform: rotate(-1deg);
}

.ritual-image img {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow:
    13px 13px 0 var(--ink),
    27px 27px 0 var(--pink);
}

.ritual-punchline {
  width: fit-content;
  max-width: 920px;
  margin: 76px auto 0;
  padding: 15px 22px;
  transform: rotate(-1deg);
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  font-family: var(--font-mono);
  font-size: clamp(12px, 1.3vw, 17px);
  font-weight: 700;
  text-align: center;
}

.reaction-section {
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(380px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(45px, 7vw, 110px);
  padding: clamp(70px, 7vw, 120px) max(24px, calc((100vw - 1400px) / 2));
  border-bottom: var(--border);
  background:
    repeating-linear-gradient(
      -35deg,
      transparent 0 22px,
      rgba(255, 255, 255, 0.09) 22px 44px
    ),
    var(--blue);
  color: var(--white);
}

.reaction-image {
  position: relative;
  max-width: 590px;
  justify-self: end;
}

.reaction-image::before {
  position: absolute;
  inset: -18px;
  transform: rotate(3deg);
  border: 4px solid var(--ink);
  border-radius: 50% 50% 14px 14px;
  background: var(--butter);
  content: "";
}

.reaction-image img {
  position: relative;
  width: 100%;
  max-height: 740px;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 14px 14px;
  box-shadow: 14px 14px 0 var(--ink);
  object-fit: cover;
  object-position: 50% 43%;
}

.reaction-sticker {
  position: absolute;
  right: -58px;
  bottom: 62px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  transform: rotate(10deg);
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 8px 8px 0 var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.05;
  text-align: center;
}

.reaction-copy {
  min-width: 0;
  max-width: 730px;
}

.reaction-copy h2 {
  font-size: clamp(56px, 7vw, 112px);
}

.reaction-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
}

.reaction-copy blockquote {
  width: fit-content;
  max-width: 100%;
  margin: 36px 0 22px;
  padding: 15px 18px;
  transform: rotate(-1.5deg);
  border: 3px solid var(--ink);
  background: var(--butter);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(29px, 3.4vw, 51px);
  line-height: 1;
}

.reaction-copy cite {
  display: block;
  margin-top: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-style: normal;
}

.reaction-copy > small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.benefits-section {
  padding: clamp(80px, 9vw, 145px) max(24px, calc((100vw - 1450px) / 2));
  border-bottom: var(--border);
  background:
    radial-gradient(circle at 5% 15%, var(--mint) 0 5%, transparent 5.2%),
    radial-gradient(circle at 94% 88%, var(--pink) 0 8%, transparent 8.2%),
    var(--cream);
}

.benefits-heading {
  display: grid;
  max-width: 1250px;
  grid-template-columns: 0.35fr 1fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 65px;
}

.benefits-heading h2 {
  font-size: clamp(55px, 6.5vw, 102px);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  min-height: 330px;
  padding: 30px;
  border: 4px solid var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease;
}

.benefit:nth-child(even) {
  transform: translateY(34px) rotate(1deg);
}

.benefit:nth-child(odd) {
  transform: rotate(-1deg);
}

.benefit:hover {
  transform: translateY(-8px) rotate(0deg);
}

.benefit > span {
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 33px;
}

.benefit h3 {
  margin: 58px 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.benefit p {
  margin: 0;
  font-weight: 650;
}

.benefit--yellow {
  background: var(--butter);
}

.benefit--blue {
  background: var(--blue);
  color: var(--white);
}

.benefit--pink {
  background: var(--pink);
  color: var(--white);
}

.benefit--orange {
  background: var(--orange);
}

.benefit--blue > span,
.benefit--pink > span {
  color: var(--ink);
}

.reviews-section {
  padding: clamp(80px, 9vw, 145px) max(24px, calc((100vw - 1480px) / 2));
  border-bottom: var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13) 25%, transparent 25%) 0 0 /
      44px 44px,
    var(--pink);
  color: var(--white);
}

.reviews-heading {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.35fr;
  align-items: end;
  gap: 35px;
  margin-bottom: 60px;
}

.reviews-heading h2 {
  font-size: clamp(52px, 6vw, 96px);
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  transform: rotate(2deg);
  border: 3px solid var(--ink);
  border-radius: 18px;
  background: var(--butter);
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
}

.reviews-score > strong {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.reviews-score span {
  display: grid;
}

.reviews-score b {
  color: var(--pink);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.reviews-score small {
  margin-top: 3px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  transform: rotate(-0.5deg);
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
}

.review:nth-child(even) {
  transform: rotate(0.8deg);
}

.review__stars {
  color: var(--pink);
  letter-spacing: 0.09em;
}

.review blockquote {
  flex: 1;
  margin: 36px 0 25px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
}

.review footer {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.review footer span {
  display: block;
  margin-top: 3px;
  font-size: 8px;
  opacity: 0.7;
}

.review--blue {
  background: var(--blue);
  color: var(--white);
}

.review--orange {
  background: var(--orange);
}

.review--yellow {
  background: var(--butter);
}

.review--purple {
  background: var(--purple);
  color: var(--white);
}

.review--green {
  background: var(--mint);
}

.review--blue .review__stars,
.review--purple .review__stars {
  color: var(--butter);
}

.brand-reply {
  margin: 15px 0 0;
  padding: 10px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
}

.origin-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.67fr) minmax(0, 1fr);
  gap: clamp(50px, 7vw, 105px);
  padding: clamp(80px, 9vw, 145px) max(24px, calc((100vw - 1450px) / 2));
  border-bottom: var(--border);
  background:
    radial-gradient(circle at 90% 12%, var(--orange) 0 10%, transparent 10.2%),
    var(--butter);
}

.founder-card,
.banquet-card {
  position: relative;
  margin: 0;
}

.founder-card {
  transform: rotate(-2deg);
}

.founder-card img {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 50% 50% 24px 24px;
  box-shadow:
    13px 13px 0 var(--ink),
    26px 26px 0 var(--pink);
}

.origin-copy {
  align-self: center;
  max-width: 740px;
}

.origin-copy h2 {
  font-size: clamp(56px, 6.7vw, 104px);
}

.origin-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 23px 0 0;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 650;
}

.origin-copy blockquote {
  margin: 33px 0 0;
  padding: 17px 20px;
  transform: rotate(-1deg);
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.banquet-card {
  grid-column: 1 / -1;
  margin-top: 65px;
  transform: rotate(0.5deg);
}

.banquet-card img {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 40px;
  box-shadow:
    13px 13px 0 var(--ink),
    27px 27px 0 var(--blue);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) 1fr;
  gap: clamp(50px, 7vw, 120px);
  padding: clamp(80px, 9vw, 145px) max(24px, calc((100vw - 1400px) / 2));
  border-bottom: var(--border);
  background: var(--blue);
  color: var(--white);
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(52px, 6vw, 96px);
}

.faq-heading > p:last-child {
  max-width: 450px;
  margin-top: 24px;
  font-size: 19px;
  font-weight: 700;
}

.faq-list {
  display: grid;
}

.faq-list details {
  border-top: 3px solid var(--white);
}

.faq-list details:last-child {
  border-bottom: 3px solid var(--white);
}

.faq-list summary {
  position: relative;
  padding: 24px 56px 24px 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.1;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: translateY(-50%);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  content: "+";
  font-family: var(--font-body);
  font-size: 27px;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: -7px 60px 25px 0;
  font-size: 16px;
  font-weight: 650;
}

.final-cta {
  display: flex;
  min-height: 380px;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  padding: clamp(70px, 8vw, 120px) max(24px, calc((100vw - 1400px) / 2));
  border-bottom: var(--border);
  background:
    radial-gradient(circle at 89% 30%, var(--pink) 0 12%, transparent 12.3%),
    radial-gradient(circle at 4% 100%, var(--mint) 0 15%, transparent 15.3%),
    var(--butter);
}

.final-cta h2 {
  font-size: clamp(57px, 7vw, 112px);
}

.final-cta__copy > p:last-child {
  margin: 20px 0 0;
  font-size: 20px;
  font-weight: 800;
}

.final-cta__action {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 22px;
  transform: rotate(2deg);
}

.final-cta__price {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  padding: 70px max(24px, calc((100vw - 1450px) / 2)) 110px;
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand svg {
  width: 65px;
  height: 65px;
  padding: 6px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--butter);
  fill: var(--ink);
}

.footer-brand .footer-brand__bill {
  fill: var(--coral);
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.footer-brand span {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--butter);
}

.footer-fineprint {
  max-width: 460px;
  justify-self: end;
}

.footer-fineprint p {
  margin: 0 0 11px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.76;
}

.cart-overlay {
  position: fixed;
  z-index: 199;
  inset: 0;
  background: rgba(15, 13, 43, 0.67);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 230ms ease;
}

.cart-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  display: flex;
  width: min(540px, 100vw);
  height: 100dvh;
  flex-direction: column;
  overflow-y: auto;
  padding: 30px;
  transform: translateX(100%);
  border-left: 4px solid var(--ink);
  background:
    radial-gradient(var(--pink) 0 2px, transparent 2.5px) 0 0 / 26px 26px,
    var(--cream);
  box-shadow: -12px 0 0 rgba(23, 22, 63, 0.22);
  visibility: hidden;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 260ms;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 3px solid var(--ink);
}

.cart-drawer__header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--white);
  cursor: pointer;
}

.icon-button span {
  transform: translateY(-2px);
  font-size: 33px;
  line-height: 1;
}

.cart-empty {
  display: grid;
  flex: 1;
  place-content: center;
  justify-items: center;
  padding: 50px 20px;
  text-align: center;
}

.empty-duck {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  transform: rotate(-5deg);
  border: 4px solid var(--ink);
  border-radius: 50% 50% 44% 44%;
  background: var(--butter);
  box-shadow: 10px 10px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 1;
}

.cart-empty h3 {
  margin: 35px 0 0;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
}

.cart-empty p {
  margin: 4px 0 28px;
  font-weight: 700;
}

.cart-filled {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding-top: 28px;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 3px solid var(--ink);
}

.cart-item > img {
  width: 118px;
  height: 118px;
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
  object-fit: cover;
}

.cart-item__details {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item h3 {
  max-width: calc(100% - 80px);
  margin: 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.cart-item p {
  margin: 3px 0 5px;
  font-size: 12px;
  font-weight: 700;
}

.stock--small {
  display: block;
  font-size: 8px;
}

.cart-item__price {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-mono);
  font-size: 13px;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.quantity {
  display: grid;
  grid-template-columns: 34px 38px 34px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
}

.quantity button {
  display: grid;
  height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.quantity button:hover {
  background: var(--butter);
}

.quantity button:disabled {
  background: var(--cream);
  cursor: not-allowed;
  opacity: 0.45;
}

.quantity output {
  display: grid;
  height: 34px;
  place-items: center;
  border-right: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
}

.remove-button {
  padding: 3px 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: none;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.cart-summary {
  margin-top: auto;
  padding: 28px 0 20px;
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 800;
}

.cart-summary strong {
  font-family: var(--font-mono);
  font-size: 19px;
}

.cart-summary p,
.cart-reassurance {
  margin: 8px 0 0;
  font-size: 10px;
  font-weight: 700;
  opacity: 0.72;
}

.cart-reassurance {
  margin: 15px auto 0;
  max-width: 330px;
  text-align: center;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 22px;
  bottom: 22px;
  display: flex;
  max-width: min(450px, calc(100vw - 44px));
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  transform: translateY(calc(100% + 50px));
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: var(--mint);
  box-shadow: 7px 7px 0 var(--ink);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 200ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  font-weight: 900;
}

.toast p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.mobile-buy-bar {
  display: none;
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .main-nav {
    gap: 22px;
  }

  .product-section {
    grid-template-columns: 1fr 0.85fr;
    gap: 50px;
  }

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

  .benefit:nth-child(even) {
    transform: translateY(0) rotate(1deg);
  }

  .reviews-heading {
    grid-template-columns: 0.3fr 1fr;
  }

  .reviews-score {
    grid-column: 2;
    width: fit-content;
    margin-top: 10px;
  }
}

@media (max-width: 980px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 72px;
    padding: 80px 24px 110px;
    background:
      radial-gradient(circle at 8% 7%, var(--pink) 0 5%, transparent 5.2%),
      linear-gradient(155deg, var(--butter) 0 62%, var(--coral) 62% 100%);
  }

  .hero__copy {
    max-width: 790px;
  }

  .hero h1 {
    font-size: clamp(64px, 12vw, 108px);
  }

  .hero__visual {
    width: min(820px, calc(100% - 18px));
    justify-self: center;
  }

  .hero__image-wrap img {
    min-height: 0;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip article:nth-child(3) {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .trust-strip article:nth-child(4) {
    border-top: 2px solid var(--ink);
  }

  .product-section {
    grid-template-columns: 1fr;
    gap: 95px;
    padding-inline: 24px;
  }

  .product-gallery {
    max-width: 850px;
  }

  .buy-box {
    position: static;
    max-width: 760px;
  }

  .ingredients-section,
  .reaction-section,
  .faq-section {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .ingredients-image {
    width: min(650px, calc(100% - 30px));
    justify-self: center;
  }

  .ritual-section,
  .benefits-section,
  .reviews-section,
  .origin-section {
    padding-inline: 24px;
  }

  .ritual-heading,
  .benefits-heading {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .ritual-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 25px;
  }

  .ritual-steps li:nth-child(2) {
    border-top: 3px solid var(--ink);
  }

  .reaction-section {
    gap: 90px;
  }

  .reaction-image {
    width: min(610px, calc(100% - 50px));
    justify-self: center;
  }

  .reaction-copy {
    max-width: 820px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .reviews-score {
    grid-column: auto;
  }

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

  .origin-section {
    grid-template-columns: minmax(270px, 0.65fr) 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-inline: 24px;
  }

  .footer-fineprint {
    grid-column: 1 / -1;
    max-width: 850px;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
    font-size: 16px;
  }

  html {
    scroll-padding-top: 67px;
  }

  .announcement {
    height: 31px;
    font-size: 10px;
    line-height: 28px;
  }

  .site-header {
    min-height: 67px;
  }

  .brand {
    gap: 7px;
  }

  .brand__duck {
    width: 43px;
    height: 43px;
    padding: 4px;
  }

  .brand__words strong {
    font-size: 20px;
  }

  .brand__words small {
    font-size: 7px;
  }

  .cart-button {
    padding: 7px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .cart-button > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    gap: 54px;
    padding: 65px 18px 85px;
  }

  .hero h1 {
    font-size: clamp(54px, 18vw, 78px);
  }

  .hero h1 em {
    border-width: 3px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .hero__lede {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__facts {
    margin-top: 32px;
  }

  .hero__facts li {
    padding-right: 8px;
  }

  .hero__facts li + li {
    padding-left: 10px;
  }

  .hero__facts span {
    font-size: 7px;
  }

  .hero__image-wrap {
    border-radius: 32px;
    box-shadow:
      9px 9px 0 var(--ink),
      17px 17px 0 var(--blue);
  }

  .hero__image-wrap img {
    min-height: 370px;
    aspect-ratio: 0.92;
    object-position: 62% center;
  }

  .hero__burst {
    top: -37px;
    right: -8px;
    width: 112px;
    height: 112px;
  }

  .hero__burst span {
    font-size: 22px;
  }

  .pat-path,
  .flying-pat {
    display: none;
  }

  .image-caption {
    right: 9px;
    bottom: 9px;
    font-size: 8px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    min-height: 91px;
    justify-content: flex-start;
    padding: 17px 24px;
  }

  .trust-strip article + article {
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .trust-strip__icon {
    width: 45px;
    height: 45px;
  }

  .product-section,
  .ingredients-section,
  .ritual-section,
  .reaction-section,
  .benefits-section,
  .reviews-section,
  .origin-section,
  .faq-section,
  .final-cta {
    padding-inline: 18px;
  }

  .product-gallery {
    display: block;
  }

  .product-gallery__main img {
    aspect-ratio: 1;
  }

  .product-gallery__side {
    width: 58%;
    margin: -55px 0 0 auto !important;
    transform: rotate(3deg);
  }

  .product-gallery__side img {
    aspect-ratio: 0.9;
  }

  .buy-box {
    padding: 27px 21px;
    box-shadow: 9px 9px 0 var(--ink);
  }

  .buy-box h2,
  .ingredients-copy h2,
  .ritual-heading h2,
  .reaction-copy h2,
  .benefits-heading h2,
  .reviews-heading h2,
  .origin-copy h2,
  .faq-heading h2,
  .final-cta h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .ingredients-section {
    gap: 65px;
  }

  .ingredient-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .ingredients-image {
    width: calc(100% - 18px);
  }

  .ingredients-image img {
    box-shadow: 9px 9px 0 var(--ink);
  }

  .ritual-heading {
    margin-bottom: 30px;
  }

  .ritual-steps {
    grid-template-columns: 1fr;
  }

  .ritual-steps li {
    grid-template-columns: 55px 1fr;
  }

  .ritual-image img {
    min-height: 390px;
    border-radius: 24px;
    box-shadow:
      9px 9px 0 var(--ink),
      17px 17px 0 var(--pink);
    object-fit: cover;
    object-position: 55% center;
  }

  .ritual-punchline {
    margin-top: 55px;
  }

  .reaction-section {
    min-height: 0;
  }

  .reaction-image {
    width: calc(100% - 42px);
  }

  .reaction-image img {
    max-height: 610px;
  }

  .reaction-sticker {
    right: -17px;
    bottom: 45px;
    width: 112px;
    height: 112px;
    font-size: 19px;
  }

  .reaction-copy blockquote {
    font-size: clamp(28px, 8.7vw, 34px);
  }

  .benefit-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 270px;
  }

  .benefit:nth-child(n) {
    transform: none;
  }

  .benefit h3 {
    margin-top: 40px;
  }

  .review {
    min-height: 275px;
  }

  .origin-section {
    grid-template-columns: 1fr;
  }

  .founder-card {
    width: calc(100% - 25px);
  }

  .banquet-card {
    margin-top: 30px;
  }

  .banquet-card img {
    min-height: 430px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow:
      9px 9px 0 var(--ink),
      17px 17px 0 var(--blue);
  }

  .faq-list {
    margin-top: 15px;
  }

  .faq-list summary {
    font-size: 25px;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .final-cta__action {
    width: 100%;
    justify-content: space-between;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 18px 115px;
  }

  .footer-fineprint {
    grid-column: auto;
  }

  .cart-drawer {
    padding: 22px 18px 100px;
    border-left: 0;
  }

  .cart-drawer__header h2 {
    font-size: 39px;
  }

  .cart-item {
    grid-template-columns: 92px 1fr;
  }

  .cart-item > img {
    width: 92px;
    height: 92px;
  }

  .toast {
    right: 13px;
    bottom: 91px;
    max-width: calc(100vw - 26px);
  }

  .mobile-buy-bar {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 13px;
    transform: translateY(110%);
    border-top: 3px solid var(--ink);
    background: var(--butter);
    transition: transform 220ms ease;
  }

  .mobile-buy-bar.is-visible {
    transform: translateY(0);
  }

  body.cart-open .mobile-buy-bar {
    transform: translateY(110%);
  }

  .mobile-buy-bar > div {
    display: grid;
  }

  .mobile-buy-bar strong {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
  }

  .mobile-buy-bar span {
    margin-top: 3px;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
  }

  .mobile-buy-bar .button {
    min-height: 45px;
    padding: 11px 17px;
    box-shadow: 4px 4px 0 var(--ink);
    font-size: 13px;
  }
}

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

  .announcement__track {
    animation: none;
  }
}
