@font-face {
  font-family: "Pally";
  src: url("assets/Pally-Variable.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --navy: #021736;
  --ink: #01122b;
  --yellow: #facf56;
  --lemon: #ffe964;
  --pink: #f67fa9;
  --magenta: #ff4085;
  --paper: #ffda9f;
  --white: #fdf7e6;
  --warm-grey: #cac5b8;
  --page-bg: var(--white);
  --page-text: var(--navy);
  --text-rgb: 2, 23, 54;
  --surface-rgb: 253, 247, 230;
  --muted-55: rgba(var(--text-rgb), 0.55);
  --muted-62: rgba(var(--text-rgb), 0.62);
  --muted-68: rgba(var(--text-rgb), 0.68);
  --muted-72: rgba(var(--text-rgb), 0.72);
  --muted-78: rgba(var(--text-rgb), 0.78);
  --tag-bg: rgba(var(--surface-rgb), 0.72);
  --card-bg: var(--white);
  --brand-wordmark-color: var(--navy);
  --header-cta-color: var(--navy);
  --header-cta-bg: var(--yellow);
  --header-cta-shadow: transparent;
  --theme-toggle-color: var(--page-bg);
  --theme-toggle-bg: var(--page-text);
  --theme-toggle-shadow: var(--yellow);
  --theme-toggle-hover-bg: var(--pink);
}

html[data-theme="dark"] {
  --page-bg: var(--navy);
  --page-text: var(--white);
  --text-rgb: 253, 247, 230;
  --surface-rgb: 2, 23, 54;
  --tag-bg: rgba(253, 247, 230, 0.1);
  --card-bg: var(--white);
  --brand-wordmark-color: var(--page-text);
  --header-cta-color: var(--navy);
  --header-cta-bg: var(--yellow);
  --header-cta-shadow: transparent;
  --theme-toggle-color: var(--page-bg);
  --theme-toggle-bg: var(--page-text);
  --theme-toggle-shadow: var(--warm-grey);
  --theme-toggle-hover-bg: var(--yellow);
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--page-text);
  background: var(--page-bg);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
  transition: color 0.22s ease, background-color 0.22s ease;
}

button,
input,
textarea {
  font: inherit;
}

jelly-button,
jelly-icon-button,
jelly-input,
jelly-textarea,
.jelly-site-theme {
  font: inherit;
}

.jelly-site-theme {
  display: contents;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 48px) clamp(22px, 5.8vw, 76px);
  pointer-events: none;
}

.brand,
.header-actions,
.header-cta,
.theme-toggle {
  pointer-events: auto;
}

.brand {
  position: relative;
  display: block;
  width: clamp(150px, 18vw, 286px);
  padding: 6px 10px;
  color: var(--brand-wordmark-color);
  background: transparent;
  border-radius: 999px;
  line-height: 0;
  transition: color 0.22s ease;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  color: inherit;
  overflow: visible;
}

.brand-logo .logo-wordmark {
  transition: fill 0.22s ease;
}

.brand-logo .logo-donut {
  transform-box: fill-box;
  transform-origin: 42% 50%;
  transition: transform 0.22s cubic-bezier(0.34, 1.45, 0.64, 1);
}

.brand:hover .brand-logo .logo-donut,
.brand:focus-visible .brand-logo .logo-donut {
  transform: rotate(-7deg) scale(1.035);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-cta,
.bag-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 19px;
  color: var(--header-cta-color, var(--navy));
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.header-cta:hover,
.header-cta.is-jelly-hovered,
.bag-submit:hover,
.bag-submit.is-jelly-hovered {
  background: var(--pink);
  transform: translate3d(0, -1px, 0) scale(1.035);
  box-shadow: none;
}

.header-cta:active,
.bag-submit:active {
  transform: translate3d(0, 1px, 0) scale(0.975);
  box-shadow: none;
}

.header-cta:focus-visible,
.bag-submit:focus-visible,
.theme-toggle:focus-visible {
  outline: 3px solid rgba(250, 207, 86, 0.75);
  outline-offset: 6px;
}

.header-cta {
  background: var(--header-cta-bg);
}

.bag-submit {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: none;
}

.bag-submit:hover {
  box-shadow: none;
}

.bag-submit:active {
  box-shadow: none;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--theme-toggle-color);
  background: var(--theme-toggle-bg);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.theme-toggle:hover {
  color: var(--page-bg);
  background: var(--theme-toggle-hover-bg);
  transform: translate3d(0, 0, 0);
  box-shadow: none;
}

html[data-theme="light"] .theme-toggle:hover {
  color: var(--navy);
}

.theme-toggle:active {
  transform: translate3d(0, 0, 0);
  box-shadow: none;
}

.theme-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -9px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: scale(0.72) rotate(-16deg);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0);
}

jelly-button.header-cta,
jelly-button.bag-submit,
jelly-icon-button.theme-toggle {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  transition: filter 0.18s ease;
}

jelly-button.header-cta,
jelly-button.bag-submit {
  --jelly-button-height: 46px;
  --jelly-button-min-width: 0;
  --jelly-button-padding-inline: 19px;
  --jelly-button-font-size: 14px;
  --jelly-button-gap: 10px;
  --jelly-fill: var(--header-cta-bg);
  --jelly-label: var(--header-cta-color);
  --jelly-ring: var(--yellow);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  filter: saturate(1);
}

jelly-button.bag-submit {
  --jelly-button-height: 46px;
  --jelly-button-min-width: 100%;
  --jelly-button-padding-inline: 0;
  --jelly-fill: var(--yellow);
  --jelly-label: var(--navy);
  --jelly-ring: var(--yellow);
  display: block;
  text-align: center;
}

jelly-icon-button.theme-toggle {
  --jelly-icon-button-size: 46px;
  --jelly-icon-button-radius: 999px;
  --jelly-icon-button-icon-size: 18px;
  --jelly-fill: var(--theme-toggle-bg);
  --jelly-label: var(--theme-toggle-color);
  --jelly-ring: var(--yellow);
  filter: none;
}

jelly-button.header-cta:hover,
jelly-button.header-cta.is-jelly-hovered,
jelly-button.bag-submit:hover,
jelly-button.bag-submit.is-jelly-hovered,
jelly-icon-button.theme-toggle:hover,
jelly-icon-button.theme-toggle.is-jelly-hovered {
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
}

jelly-button.header-cta:hover,
jelly-button.header-cta.is-jelly-hovered,
jelly-button.bag-submit:hover,
jelly-button.bag-submit.is-jelly-hovered {
  --jelly-fill: var(--pink);
  filter: saturate(1.12) brightness(1.02);
}

jelly-button.bag-submit:hover,
jelly-button.bag-submit.is-jelly-hovered {
  --jelly-fill: var(--yellow);
}

jelly-icon-button.theme-toggle:hover,
jelly-icon-button.theme-toggle.is-jelly-hovered {
  --jelly-fill: var(--theme-toggle-hover-bg);
  --jelly-label: var(--page-bg);
  filter: saturate(1.12) brightness(1.02);
}

html[data-theme="light"] jelly-icon-button.theme-toggle:hover,
html[data-theme="light"] jelly-icon-button.theme-toggle.is-jelly-hovered {
  --jelly-label: var(--navy);
}

jelly-button.header-cta:active,
jelly-button.bag-submit:active,
jelly-icon-button.theme-toggle:active {
  filter: saturate(1.08);
}

jelly-icon-button.theme-toggle:active {
  filter: saturate(1.08);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(104px, 12vh, 148px) clamp(22px, 5.8vw, 82px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  animation: heroFadeIn 0.9s ease 0.16s both;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2,
.brand {
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-weight: 800;
}

h1 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(44px, 4.9vw, 72px);
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 840px;
  margin: 28px auto 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.42;
  text-wrap: pretty;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 6vh, 56px);
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--muted-62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
  opacity: calc(1 - var(--cue-scroll, 0));
  pointer-events: none;
}

/* Entry fade lives on the children: an animation with fill on .scroll-cue
   itself would permanently override the scroll-driven opacity above. */
.scroll-cue span {
  animation: heroFadeIn 0.9s ease 0.9s both;
}

.scroll-cue svg {
  animation:
    heroFadeIn 0.9s ease 0.9s both,
    cueBounce 1.7s ease-in-out 1.8s infinite;
}

@keyframes cueBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.mix-zone {
  position: relative;
  min-height: 760vh;
  margin-top: -100vh;
}

.sticky-stage {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  margin-bottom: -100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  pointer-events: none;
}

.service-candies {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.depth-candies {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.depth-candy {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--depth-size);
  height: auto;
  opacity: calc(var(--depth-opacity, 0.18) * (1 - (var(--reset-scroll, 0) * 0.75)));
  filter: blur(var(--depth-blur, 5px));
  transform:
    translate3d(
      calc(var(--depth-x) + (var(--depth-drift-x, 0px) * var(--depth-scroll, 0) * (1 - var(--reset-scroll, 0)))),
      calc(var(--depth-y) + (var(--depth-drift-y, -18vh) * var(--depth-scroll, 0) * (1 - var(--reset-scroll, 0)))),
      0
    )
    rotate(calc(var(--depth-r, 0deg) + (var(--depth-spin, 0deg) * var(--depth-scroll, 0) * (1 - var(--reset-scroll, 0)))))
    scale(calc(1 + (var(--depth-scroll, 0) * var(--depth-scale, 0.08) * (1 - var(--reset-scroll, 0)))));
  transform-origin: center;
  will-change: transform, opacity;
}

.depth-candy-front {
  z-index: 4;
}

.depth-candy-back {
  z-index: 0;
}

.service-candy {
  --entry-scroll: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--candy-size, clamp(64px, 9vw, 132px));
  height: auto;
  display: block;
  opacity: calc(var(--entry-scroll, 1) * (1 - (var(--drop-scroll, 0) * 0.2)) * (1 - var(--reset-scroll, 0)));
  transform:
    translate3d(
      calc(
        var(--start-x)
        + (var(--entry-x, 0px) * (1 - var(--entry-scroll, 1)))
        + ((var(--mid-x, 0px) - var(--start-x)) * var(--converge-scroll, 0))
        + ((var(--end-x) - var(--mid-x, 0px)) * var(--drop-scroll, 0))
        + ((var(--start-x) - var(--end-x)) * var(--reset-scroll, 0))
      ),
      calc(
        var(--start-y)
        + (var(--entry-y, -92vh) * (1 - var(--entry-scroll, 1)))
        + ((var(--tumble-y, 28vh) * var(--tumble-scroll, 0)) * (1 - var(--converge-scroll, 0)))
        + ((var(--mid-y, -250px) - var(--start-y)) * var(--converge-scroll, 0))
        + ((var(--end-y) - var(--mid-y, -250px)) * var(--drop-scroll, 0))
        + ((var(--start-y) - var(--end-y)) * var(--reset-scroll, 0))
      ),
      0
    )
    rotate(calc(var(--start-r) + (var(--tumble-scroll, 0) * 1080deg) + ((var(--end-r) - var(--start-r)) * var(--spin-scroll, 0)) + (var(--reset-scroll, 0) * 220deg)))
    scale(calc(1 - (var(--drop-scroll, 0) * 0.18) + (var(--reset-scroll, 0) * 0.18)));
  transform-origin: center;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.service-candy:nth-child(1) {
  --entry-x: -118vw;
  --entry-y: -64vh;
}

.service-candy:nth-child(2) {
  --entry-x: 118vw;
  --entry-y: -66vh;
}

.service-candy:nth-child(3) {
  --entry-x: -118vw;
  --entry-y: 36vh;
}

.service-candy:nth-child(4) {
  --entry-x: 118vw;
  --entry-y: 32vh;
}

.service-candy:nth-child(5) {
  --entry-x: -84vw;
  --entry-y: -118vh;
}

.service-candy:nth-child(6) {
  --entry-x: 70vw;
  --entry-y: 94vh;
}

.service-candy:nth-child(7) {
  --entry-x: 118vw;
  --entry-y: 58vh;
}

.service-candy:nth-child(8) {
  --entry-x: -72vw;
  --entry-y: 98vh;
}

.service-candy:nth-child(9) {
  --entry-x: 82vw;
  --entry-y: -112vh;
}

.service-candy:nth-child(10) {
  --entry-x: -118vw;
  --entry-y: 62vh;
}

.service-callouts {
  position: relative;
  z-index: 3;
  min-height: 920vh;
  padding: 116vh 0 190vh;
  pointer-events: none;
}

.services-panel {
  display: grid;
  gap: clamp(64px, 10vh, 112px);
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  color: var(--page-text);
  text-align: center;
}

.services-panel-copy {
  width: min(880px, 100%);
  margin: 0 auto clamp(6px, 1vh, 14px);
  color: var(--page-text);
  text-align: center;
}

.services-panel-copy p {
  color: var(--muted-72);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.services-panel-copy h2 {
  margin: 10px 0 8px;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
}

.services-panel-copy span {
  display: block;
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted-78);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.35;
}

.service-row {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

/* Scroll-into-view reveal: rows rise and fade, tags pop in after. */
.services-panel-copy,
.service-row {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-panel-copy.is-inview,
.service-row.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.service-tags span {
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.service-row.is-inview .service-tags span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-row.is-inview .service-tags span:nth-child(1) {
  transition-delay: 0.22s;
}

.service-row.is-inview .service-tags span:nth-child(2) {
  transition-delay: 0.32s;
}

.service-row.is-inview .service-tags span:nth-child(3) {
  transition-delay: 0.42s;
}

.service-row-main {
  min-width: 0;
}

.service-row h3 {
  margin: 0;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.service-row-main p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--muted-78);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.42;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  color: var(--page-text);
  border: 1px solid rgba(var(--text-rgb), 0.28);
  border-radius: 999px;
  background: var(--tag-bg);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.reviews-section {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 360vh;
  margin: clamp(120px, 18vh, 180px) 0 0;
  padding: 0;
  color: var(--page-text);
  pointer-events: auto;
}

.reviews-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(92px, 12vh, 126px) 0 clamp(42px, 6vh, 72px);
}

.reviews-intro {
  width: min(880px, 100%);
  margin: 0 auto clamp(28px, 4vh, 44px);
  padding: 0 clamp(22px, 5.8vw, 82px);
  text-align: center;
}

.reviews-intro p {
  color: var(--muted-72);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.reviews-intro h2 {
  margin: 10px auto 10px;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.reviews-intro span {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted-78);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.38;
}

.reviews-window {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: visible;
}

.reviews-controls {
  display: none;
}

.reviews-track {
  --review-track-start: 0px;
  --review-track-shift: 0px;
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 0 clamp(22px, 5.8vw, 82px) 8px;
  transform:
    translate3d(
      calc(var(--review-track-start, 0px) - (var(--reviews-scroll, 0) * var(--review-track-shift, 0px))),
      0,
      0
    );
  transition: transform 0.08s linear;
  will-change: transform;
}

.review-card {
  display: flex;
  flex: 0 0 clamp(310px, 32vw, 420px);
  min-height: clamp(300px, 42vh, 420px);
  max-height: calc(100vh - 300px);
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 2.4vw, 30px);
  color: var(--navy);
  background: var(--card-bg);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 7px 7px 0 var(--ink);
}

.review-card-feature {
  flex-basis: clamp(520px, 52vw, 760px);
  background: var(--yellow);
}

.review-stars {
  color: var(--magenta);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
}

.review-card blockquote p {
  color: var(--navy);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 700;
  line-height: 1.35;
}

.review-card-feature blockquote p {
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 800;
  line-height: 1.12;
}

.review-card footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
}

.review-card strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.review-card footer span {
  color: rgba(2, 23, 54, 0.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.reviews-intro,
.review-card,
.receipt-work-intro {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.review-card {
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-intro.is-inview,
.review-card.is-inview,
.receipt-work-intro.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.bag-mouth-frame,
.paper-bag {
  position: relative;
  width: min(660px, 90vw);
  aspect-ratio: 1000 / 1203;
  transform: translateY(calc(96vh - (var(--bag-scroll, 0) * 96vh) - (var(--tear-scroll, 0) * 86vh)));
}

.bag-mouth-frame {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  pointer-events: none;
  opacity: calc(1 - var(--tear-scroll, 0));
  transform:
    translate(-50%, -50%)
    translateY(calc(96vh - (var(--bag-scroll, 0) * 96vh) - (var(--tear-scroll, 0) * 86vh)))
    rotate(calc(var(--tear-scroll, 0) * -5deg));
  transform-origin: 48% 42%;
}

.paper-bag {
  z-index: 4;
  pointer-events: auto;
}

.bag-mouth-art,
.bag-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.bag-shell {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.bag-art-left {
  transform:
    translate3d(calc(var(--tear-scroll, 0) * -44vw), calc(var(--tear-scroll, 0) * -12vh), 0)
    rotate(calc(var(--tear-scroll, 0) * -24deg));
  opacity: calc(1 - var(--tear-scroll, 0));
  transform-origin: 54% 48%;
}

.bag-art-right {
  transform:
    translate3d(calc(var(--tear-scroll, 0) * 44vw), calc(var(--tear-scroll, 0) * -12vh), 0)
    rotate(calc(var(--tear-scroll, 0) * 24deg));
  opacity: calc(1 - var(--tear-scroll, 0));
  transform-origin: 46% 48%;
}

.bag-title {
  position: absolute;
  bottom: 100%;
  left: -5%;
  right: -5%;
  z-index: 6;
  text-align: center;
  padding-bottom: 16px;
  color: var(--page-text);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.96;
  opacity: calc(var(--bag-scroll, 0) * (1 - var(--tear-scroll, 0)));
  transform: translateY(calc(var(--tear-scroll, 0) * -28px));
  pointer-events: none;
}

.bag-submit {
  position: absolute;
  bottom: 7%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 6;
  width: min(100%, 260px);
  cursor: pointer;
  opacity: calc(var(--bag-scroll, 0) * (1 - var(--tear-scroll, 0)));
  transform:
    translate3d(
      calc(var(--tear-scroll, 0) * 42px),
      calc(var(--tear-scroll, 0) * 64px),
      0
    )
    rotate(calc(var(--tear-scroll, 0) * 8deg));
  transform-origin: center;
}

.bag-form {
  position: absolute;
  z-index: 5;
  left: 16%;
  right: 16%;
  top: 13%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  color: #32200f;
  opacity: calc(1 - var(--tear-scroll, 0));
  transform: translateY(calc(var(--tear-scroll, 0) * -28px));
  pointer-events: auto;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submitted .bag-form {
  pointer-events: none;
}

.loop-hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(104px, 12vh, 148px) clamp(22px, 5.8vw, 82px);
  text-align: center;
  opacity: var(--loop-intro-scroll, 0);
  transform: translateY(calc((1 - var(--loop-intro-scroll, 0)) * 40px));
  pointer-events: none;
}

.loop-hero h2 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.loop-hero p {
  max-width: 840px;
  margin: 28px auto 0;
  color: var(--page-text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.42;
  text-wrap: pretty;
}

.bag-form label {
  display: grid;
  gap: 5px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.bag-form > :not(.form-trap) {
  transform:
    translate3d(
      calc(var(--tear-scroll, 0) * var(--form-scatter-x, 0px)),
      calc(var(--tear-scroll, 0) * var(--form-scatter-y, 0px)),
      0
    )
    rotate(calc(var(--tear-scroll, 0) * var(--form-scatter-r, 0deg)));
  transform-origin: center;
}

.bag-form .form-half:nth-of-type(2) {
  --form-scatter-x: -64px;
  --form-scatter-y: -28px;
  --form-scatter-r: -10deg;
}

.bag-form .form-half:nth-of-type(3) {
  --form-scatter-x: 58px;
  --form-scatter-y: -34px;
  --form-scatter-r: 9deg;
}

.bag-form .form-half:nth-of-type(4) {
  --form-scatter-x: -54px;
  --form-scatter-y: 34px;
  --form-scatter-r: 8deg;
}

.bag-form .form-half:nth-of-type(5) {
  --form-scatter-x: 68px;
  --form-scatter-y: 24px;
  --form-scatter-r: -8deg;
}

.bag-form .form-full {
  --form-scatter-x: 12px;
  --form-scatter-y: 62px;
  --form-scatter-r: 5deg;
}

.bag-form .form-status {
  --form-scatter-x: -22px;
  --form-scatter-y: 38px;
  --form-scatter-r: -4deg;
}

.form-full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  color: #32200f;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform:
    translate3d(
      calc(var(--tear-scroll, 0) * var(--form-scatter-x, 0px)),
      calc(4px + (var(--tear-scroll, 0) * var(--form-scatter-y, 0px))),
      0
    )
    rotate(calc(var(--tear-scroll, 0) * var(--form-scatter-r, 0deg)));
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.form-status.is-visible {
  opacity: 1;
  transform:
    translate3d(
      calc(var(--tear-scroll, 0) * var(--form-scatter-x, 0px)),
      calc(var(--tear-scroll, 0) * var(--form-scatter-y, 0px)),
      0
    )
    rotate(calc(var(--tear-scroll, 0) * var(--form-scatter-r, 0deg)));
}

.form-status.is-fading {
  opacity: 0;
  transform:
    translate3d(
      calc(var(--tear-scroll, 0) * var(--form-scatter-x, 0px)),
      calc(-4px + (var(--tear-scroll, 0) * var(--form-scatter-y, 0px))),
      0
    )
    rotate(calc(var(--tear-scroll, 0) * var(--form-scatter-r, 0deg)));
}

.form-status[data-type="error"] {
  color: #b3261e;
}

.bag-form input,
.bag-form textarea {
  width: 100%;
  color: var(--navy);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid rgba(50, 32, 15, 0.72);
  border-radius: 7px;
  padding: 10px 12px;
  outline: none;
}

.bag-form textarea {
  resize: vertical;
  min-height: 146px;
}

.bag-form input::placeholder,
.bag-form textarea::placeholder {
  color: rgba(50, 32, 15, 0.58);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
}

.bag-form input:focus,
.bag-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(250, 207, 86, 0.65);
}

.bag-form jelly-input,
.bag-form jelly-textarea {
  width: 100%;
  color: var(--navy);
  --jelly-fill: rgba(255, 255, 255, 0.46);
  --jelly-label: var(--navy);
  --jelly-accent: var(--yellow);
  --jelly-ring: var(--yellow);
  --jelly-ring-width: 2px;
  --jelly-color-background-muted: rgba(255, 255, 255, 0.46);
  --jelly-color-background-surface: rgba(255, 255, 255, 0.64);
  --jelly-color-background-neutral: rgba(50, 32, 15, 0.18);
  --jelly-color-foreground-default: var(--navy);
  --jelly-color-foreground-muted: rgba(50, 32, 15, 0.58);
  --jelly-font-text: "DM Sans", Arial, sans-serif;
  transition: filter 0.18s ease, transform 0.18s ease;
}

.bag-form jelly-input:hover,
.bag-form jelly-input.is-jelly-hovered,
.bag-form jelly-textarea:hover,
.bag-form jelly-textarea.is-jelly-hovered {
  --jelly-fill: rgba(255, 255, 255, 0.58);
  filter: saturate(1.08) brightness(1.02);
  transform: translateY(-1px) scale(1.006);
}

.bag-form jelly-input {
  height: 43px;
  --jelly-input-font-size: 16px;
  --jelly-input-padding-inline: 12px;
  --jelly-input-radius: 7px;
}

.bag-form jelly-textarea {
  --jelly-textarea-font-size: 16px;
  --jelly-textarea-padding-block: 10px;
  --jelly-textarea-padding-inline: 12px;
  --jelly-textarea-radius: 7px;
  --jelly-textarea-min-height: 146px;
  --jelly-textarea-max-height: 146px;
}

.bag-scroll-hint {
  position: absolute;
  bottom: clamp(18px, 3.5vh, 36px);
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--muted-55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: calc(var(--bag-scroll, 0) * (1 - var(--tear-scroll, 0)));
  pointer-events: none;
  animation: hintBounce 1.7s ease-in-out infinite;
}

@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Covers the loop wrap-around: fade to the page background, jump behind it, fade back. */
.loop-veil {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: var(--page-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.loop-veil.is-active {
  opacity: 1;
  transition-duration: 0.26s;
}

.site-footer {
  position: relative;
  z-index: 3;
  min-height: 88vh;
  min-height: 88svh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 10vh, 120px) clamp(22px, 5.8vw, 82px);
  text-align: center;
  pointer-events: auto;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(880px, 100%);
}

.footer-kicker {
  color: var(--muted-72);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer h2 {
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.2;
}

.footer-email {
  margin-top: 10px;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.footer-email:hover {
  color: var(--magenta);
}

.footer-email:focus-visible,
.footer-meta a:focus-visible {
  outline: 3px solid rgba(250, 207, 86, 0.75);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: clamp(28px, 5vh, 56px);
  color: var(--muted-72);
  font-size: 14px;
  font-weight: 700;
}

.footer-meta a {
  color: inherit;
}

.receipt-work {
  --receipt-scroll: 0;
  position: relative;
  z-index: 3;
  min-height: 330vh;
  margin: clamp(32px, 6vh, 72px) 0 0;
  pointer-events: auto;
}

.receipt-work-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(96px, 12vh, 136px) 0 clamp(54px, 8vh, 86px);
  overflow: hidden;
}

.receipt-work-intro {
  max-width: 520px;
}

.receipt-work-intro h2 {
  margin: 12px 0 0;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.receipt-work-intro span {
  display: block;
  margin-top: 18px;
  color: var(--muted-78);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.42;
  text-wrap: pretty;
}

.receipt-window {
  --receipt-paper: #fff6dd;
  position: relative;
  height: min(720px, 82vh);
  min-height: 560px;
  overflow: hidden;
  border-radius: 18px;
  filter: drop-shadow(12px 14px 0 rgba(1, 18, 43, 0.2));
}

.receipt-window::before,
.receipt-window::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.receipt-window::before {
  z-index: 1;
  inset: 62px 16px 14px;
  background: linear-gradient(180deg, rgba(var(--surface-rgb), 0.28), rgba(var(--surface-rgb), 0.04));
  border: 2px dashed rgba(var(--ink-rgb), 0.18);
  border-radius: 18px;
}

.receipt-window::after {
  display: none;
}

.receipt-slot {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  height: 96px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), #ff7cac 58%, #52d8df);
  border: 2px solid var(--ink);
  border-radius: 22px 22px 14px 14px;
  box-shadow: 8px 9px 0 rgba(1, 18, 43, 0.22);
  pointer-events: none;
}

.receipt-reset {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  min-height: 34px;
  padding: 0 13px;
  color: var(--navy);
  background: rgba(255, 247, 222, 0.82);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 4px 0 rgba(1, 18, 43, 0.16);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  pointer-events: auto;
}

.receipt-reset:hover,
.receipt-reset:focus-visible {
  background: var(--cream);
  box-shadow: 1px 2px 0 rgba(1, 18, 43, 0.2);
  transform: translate3d(2px, 2px, 0) rotate(-2deg);
}

.receipt-reset:disabled {
  cursor: default;
  opacity: 0.62;
  transform: none;
}

.receipt-reset:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
}

.receipt-slot::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 20px;
  left: 28px;
  height: 16px;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: inset 0 4px 0 rgba(255, 255, 255, 0.12);
}

.receipt-slot::after {
  content: "";
  position: absolute;
  right: 54px;
  bottom: 24px;
  left: 54px;
  height: 6px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.receipt-roll {
  position: relative;
  z-index: 5;
  height: 100%;
  color: #24170f;
  perspective: 1000px;
}

.receipt-case {
  --receipt-print: 0;
  --receipt-tear: 0;
  --receipt-visible: 0;
  --receipt-stack: 0;
  --receipt-pile-x: 0px;
  --receipt-pile-y: 86px;
  --receipt-pile-r: -4deg;
  --receipt-stack-scale: 0.86;
  --receipt-x: 0px;
  --receipt-y: -430px;
  --receipt-rotate: 0deg;
  --receipt-scale: 1;
  position: absolute;
  z-index: var(--receipt-z, 20);
  top: 74px;
  right: 3%;
  left: 3%;
  display: grid;
  gap: 14px;
  min-height: min(500px, 58vh);
  padding: clamp(22px, 3vw, 34px);
  color: #24170f;
  background:
    linear-gradient(90deg, rgba(2, 23, 54, 0.08) 0 1px, transparent 1px calc(100% - 1px), rgba(2, 23, 54, 0.08) calc(100% - 1px)),
    repeating-linear-gradient(0deg, rgba(50, 32, 15, 0.055) 0 1px, transparent 1px 8px),
    var(--receipt-paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 12px 0 rgba(1, 18, 43, 0.2);
  opacity: var(--receipt-visible);
  transform:
    translate3d(var(--receipt-x), var(--receipt-y), 0)
    rotate(var(--receipt-rotate))
    scale(var(--receipt-scale));
  transform-origin: 50% 12px;
  transition: transform 0.08s linear, opacity 0.08s linear;
  will-change: transform, opacity;
}

.receipt-work.is-resetting .receipt-case {
  animation: receipt-reset-fade 0.38s ease both;
}

.receipt-work.is-cycle-ready .receipt-case {
  cursor: pointer;
}

.receipt-work.is-cycling .receipt-case {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.18s ease;
}

@keyframes receipt-reset-fade {
  to {
    opacity: 0;
  }
}

.receipt-case:nth-child(1) {
  --receipt-pile-x: -34px;
  --receipt-pile-y: 98px;
  --receipt-pile-r: -5deg;
  --receipt-stack-scale: 0.84;
}

.receipt-case:nth-child(2) {
  --receipt-pile-x: 28px;
  --receipt-pile-y: 78px;
  --receipt-pile-r: 4deg;
  --receipt-stack-scale: 0.88;
}

.receipt-case:nth-child(3) {
  --receipt-pile-x: -8px;
  --receipt-pile-y: 72px;
  --receipt-pile-r: -2deg;
  --receipt-stack-scale: 0.9;
}

.receipt-case::before,
.receipt-case::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 18px;
  pointer-events: none;
  background:
    radial-gradient(circle at 9px 9px, transparent 0 6px, var(--receipt-paper) 6.5px) 0 0 / 18px 18px repeat-x;
}

.receipt-case::before {
  top: -10px;
}

.receipt-case::after {
  bottom: -10px;
  transform: rotate(180deg);
}

.receipt-case-head::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(2, 23, 54, 0.28) 0 8px, transparent 8px 14px);
  pointer-events: none;
}

.receipt-case-head {
  position: relative;
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  text-align: center;
}

.receipt-case-head span,
.receipt-case-head em,
.receipt-tags li {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.receipt-case-head span,
.receipt-case-head em {
  color: rgba(36, 23, 15, 0.62);
  font-style: normal;
}

.receipt-case-head strong {
  color: var(--navy);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.receipt-case dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.receipt-case dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
}

.receipt-case dt {
  color: var(--magenta);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.receipt-case dd {
  margin: 0;
  color: rgba(36, 23, 15, 0.84);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 800;
  line-height: 1.28;
}

.receipt-case blockquote {
  margin: 0;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(250, 207, 86, 0.42);
  border: 1px solid rgba(2, 23, 54, 0.18);
  border-radius: 6px;
}

.receipt-case blockquote p {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
}

.receipt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.receipt-tags li {
  min-height: 28px;
  padding: 8px 10px;
  color: var(--navy);
  background: rgba(246, 127, 169, 0.22);
  border: 1px solid rgba(2, 23, 54, 0.16);
  border-radius: 999px;
}

.home-articles {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  width: min(1120px, calc(100% - 44px));
  margin: clamp(70px, 12vh, 140px) auto clamp(48px, 8vh, 90px);
  padding: clamp(28px, 5vw, 48px) 0;
  pointer-events: auto;
}

.home-articles-copy h2 {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.home-article-card.article-card a {
  min-height: 320px;
  padding: clamp(24px, 3.6vw, 42px);
}

.home-article-card.article-card h3 {
  max-width: 720px;
  margin: 0;
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.content-page {
  min-height: 100vh;
  min-height: 100svh;
}

.articles-main,
.article-main {
  position: relative;
  z-index: 2;
  padding: clamp(128px, 17vh, 188px) clamp(22px, 5.8vw, 82px) 0;
}

.articles-hero,
.article-hero,
.article-cta {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.article-kicker,
.article-back,
.article-pill {
  color: var(--muted-72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.article-pill {
  color: var(--navy);
}

.article-back {
  display: inline-flex;
  margin-bottom: clamp(24px, 4vh, 40px);
  color: var(--page-text);
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.articles-hero h1,
.article-hero h1 {
  margin: 14px auto 0;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(46px, 6.6vw, 92px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  text-wrap: balance;
}

.article-cta h2 {
  margin: 14px auto 0;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.articles-hero p,
.article-dek,
.article-cta p {
  width: min(760px, 100%);
  margin: clamp(18px, 3vh, 28px) auto 0;
  color: var(--muted-78);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
  text-wrap: pretty;
}

.article-list {
  width: min(980px, 100%);
  margin: clamp(48px, 8vh, 86px) auto 0;
}

.article-card a {
  display: grid;
  gap: 14px;
  min-height: 360px;
  padding: clamp(26px, 4.4vw, 54px);
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.article-card a:hover {
  background: var(--pink);
  transform: translate(-2px, -2px);
  box-shadow: 11px 11px 0 var(--ink);
}

.article-card time {
  color: rgba(2, 23, 54, 0.68);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h2,
.article-card h3 {
  max-width: 840px;
  margin: 0;
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.article-card p {
  max-width: 740px;
  margin: 0;
  color: rgba(2, 23, 54, 0.76);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
}

.article-read-more {
  align-self: end;
  margin-top: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 24px;
  color: var(--muted-62);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.article-body {
  width: min(760px, 100%);
  margin: clamp(54px, 8vh, 92px) auto 0;
  color: var(--page-text);
}

.article-body p,
.article-body li {
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.62;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body h2 {
  margin: clamp(44px, 6vh, 68px) 0 16px;
  color: var(--page-text);
  font-family: "Pally", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.article-body ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 1.2em;
}

.article-callout {
  margin: clamp(38px, 6vh, 58px) 0;
  padding: clamp(24px, 4vw, 38px);
  color: var(--navy);
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 7px 7px 0 var(--ink);
}

.article-callout h2 {
  margin-top: 0;
  color: var(--navy);
}

.article-callout p {
  margin-bottom: 0;
  color: rgba(2, 23, 54, 0.8);
  font-weight: 700;
}

.article-sources {
  margin-top: clamp(50px, 7vh, 74px);
  padding-top: 28px;
  border-top: 2px solid rgba(var(--text-rgb), 0.18);
}

.article-sources h2 {
  margin-top: 0;
  font-size: clamp(26px, 3vw, 34px);
}

.article-sources a {
  color: var(--page-text);
  font-weight: 800;
  text-decoration-color: var(--magenta);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-cta {
  margin-top: clamp(62px, 10vh, 112px);
  padding: clamp(38px, 6vw, 72px) clamp(24px, 5vw, 56px);
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
}

.article-cta .article-kicker,
.article-cta h2,
.article-cta p {
  color: var(--navy);
}

.article-cta .header-cta {
  margin-top: 28px;
  background: var(--white);
}

.content-footer {
  min-height: auto;
  padding-top: clamp(92px, 12vh, 150px);
}

@media (max-width: 820px) {
  .site-header {
    left: 0;
    right: 0;
    width: 100%;
    min-height: 76px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
    background: var(--page-bg);
    transition: background-color 0.22s ease;
  }

  .brand {
    position: fixed;
    left: 16px;
    top: 18px;
    width: clamp(124px, 38vw, 150px);
    padding: 0;
  }

  .header-cta {
    max-width: 132px;
    white-space: nowrap;
  }

  .header-actions {
    position: fixed;
    top: 20px;
    right: 18px;
    gap: 10px;
  }

  .header-cta,
  .bag-submit {
    min-height: 40px;
    padding: 11px 13px;
    font-size: 11px;
  }

  .header-cta {
    box-shadow: none;
  }

  .bag-submit {
    box-shadow: none;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    box-shadow: none;
  }

  jelly-button.header-cta,
  jelly-button.bag-submit {
    --jelly-button-height: 40px;
    --jelly-button-padding-inline: 13px;
    --jelly-button-font-size: 11px;
    filter: saturate(1);
  }

  jelly-button.bag-submit {
    --jelly-button-padding-inline: 0;
  }

  jelly-icon-button.theme-toggle {
    --jelly-icon-button-size: 40px;
    filter: none;
  }

  .header-cta:hover,
  .header-cta.is-jelly-hovered,
  .bag-submit:hover,
  .bag-submit.is-jelly-hovered {
    transform: translate3d(0, 0, 0);
  }

  .header-cta:hover,
  .header-cta.is-jelly-hovered {
    box-shadow: none;
  }

  .bag-submit:hover,
  .bag-submit.is-jelly-hovered {
    box-shadow: none;
  }

  .theme-toggle:hover {
    transform: translate3d(0, 0, 0);
    box-shadow: none;
  }

  jelly-button.header-cta:hover,
  jelly-button.header-cta.is-jelly-hovered,
  jelly-button.bag-submit:hover,
  jelly-button.bag-submit.is-jelly-hovered {
    filter: saturate(1.12) brightness(1.02);
  }

  jelly-icon-button.theme-toggle:hover,
  jelly-icon-button.theme-toggle.is-jelly-hovered {
    filter: saturate(1.12) brightness(1.02);
  }

  @media (max-width: 390px) {
    .brand {
      width: 112px;
    }

    .header-actions {
      right: 14px;
      gap: 8px;
    }

    .header-cta {
      max-width: 108px;
      padding: 10px;
      font-size: 10px;
    }

    .theme-toggle {
      width: 38px;
      height: 38px;
      flex-basis: 38px;
    }

    jelly-button.header-cta {
      --jelly-button-padding-inline: 10px;
      --jelly-button-font-size: 10px;
    }

    jelly-icon-button.theme-toggle {
      --jelly-icon-button-size: 38px;
    }
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 96px 9px 52px;
  }

  .hero-copy {
    max-width: 100%;
    overflow: hidden;
  }

  h1,
  .loop-hero h2 {
    max-width: 330px;
    font-size: clamp(40px, 10.4vw, 50px);
    line-height: 1.12;
  }

  .hero-copy p {
    max-width: min(100%, 350px);
    margin-top: 24px;
    font-size: clamp(20px, 5.2vw, 24px);
    line-height: 1.36;
  }

  .articles-main,
  .article-main {
    padding-right: 11px;
    padding-left: 11px;
  }

  .article-cta {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mix-zone {
    min-height: 720vh;
    margin-top: -100vh;
  }

  .service-candy {
    width: var(--mobile-candy-size, var(--candy-size, clamp(36px, 11vw, 62px)));
  }

  .depth-candy:nth-child(1) {
    --depth-size: 68px !important;
    --depth-x: -54vw !important;
    --depth-y: -7vh !important;
    --depth-drift-x: 14vw !important;
    --depth-drift-y: -18vh !important;
    --depth-blur: 5px !important;
    --depth-opacity: 0.12 !important;
  }

  .depth-candy:nth-child(2) {
    --depth-size: 78px !important;
    --depth-x: 48vw !important;
    --depth-y: 42vh !important;
    --depth-drift-x: -18vw !important;
    --depth-drift-y: -24vh !important;
    --depth-blur: 7px !important;
    --depth-opacity: 0.14 !important;
  }

  .depth-candy:nth-child(3) {
    --depth-size: 58px !important;
    --depth-x: 38vw !important;
    --depth-y: -17vh !important;
    --depth-drift-x: -10vw !important;
    --depth-drift-y: -13vh !important;
    --depth-blur: 4px !important;
    --depth-opacity: 0.13 !important;
  }

  /* Peek at left edge */
  .service-candy:nth-child(1) {
    --start-x: -52vw !important;
    --start-y: -18vh !important;
    --mobile-candy-size: 64px;
  }

  /* Off-canvas left */
  .service-candy:nth-child(2) {
    --start-x: -72vw !important;
    --start-y: -8vh !important;
    --mobile-candy-size: 50px;
  }

  /* Off-canvas left */
  .service-candy:nth-child(3) {
    --start-x: -72vw !important;
    --start-y: 28vh !important;
    --mobile-candy-size: 68px;
  }

  /* Peek at right edge lower */
  .service-candy:nth-child(4) {
    --start-x: 48vw !important;
    --start-y: 22vh !important;
    --mobile-candy-size: 54px;
  }

  /* Peek at right edge */
  .service-candy:nth-child(5) {
    --start-x: 48vw !important;
    --start-y: -14vh !important;
    --mobile-candy-size: 58px;
  }

  /* Off-canvas right */
  .service-candy:nth-child(6) {
    --start-x: 72vw !important;
    --start-y: 38vh !important;
    --mobile-candy-size: 46px;
  }

  /* Off-canvas right */
  .service-candy:nth-child(7) {
    --start-x: 72vw !important;
    --start-y: 16vh !important;
    --mobile-candy-size: 66px;
  }

  /* Peek at left edge lower */
  .service-candy:nth-child(8) {
    --start-x: -52vw !important;
    --start-y: 40vh !important;
    --mobile-candy-size: 58px;
  }

  /* Off-canvas right */
  .service-candy:nth-child(9) {
    --start-x: 72vw !important;
    --start-y: -4vh !important;
    --mobile-candy-size: 46px;
  }

  /* Off-canvas left */
  .service-candy:nth-child(10) {
    --start-x: -72vw !important;
    --start-y: 14vh !important;
    --mobile-candy-size: 48px;
  }

  .bag-mouth-frame,
  .paper-bag {
    width: calc(100vw - 24px);
    max-width: 500px;
  }

  .paper-bag {
    transform: translateY(calc(150vh - (var(--bag-scroll, 0) * 150vh) - (var(--tear-scroll, 0) * 96vh)));
  }

  .bag-mouth-frame {
    transform:
      translate(-50%, -50%)
      translateY(calc(150vh - (var(--bag-scroll, 0) * 150vh) - (var(--tear-scroll, 0) * 96vh)))
      rotate(calc(var(--tear-scroll, 0) * -5deg));
  }

  .service-callouts {
    min-height: 625vh;
    padding: 112vh 0 90vh;
  }

  .services-panel {
    gap: 62px;
    width: min(100%, 720px);
    padding: 0 18px;
  }

  .services-panel-copy {
    width: 100%;
    margin-bottom: 14px;
  }

  .services-panel-copy h2 {
    font-size: clamp(40px, 11vw, 54px);
    line-height: 1.1;
  }

  .services-panel-copy span {
    font-size: 17px;
    line-height: 1.4;
  }

  .service-row {
    width: 100%;
  }

  .service-row h3 {
    font-size: clamp(38px, 10vw, 54px);
    line-height: 1.08;
  }

  .service-row-main p {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.42;
  }

  .service-tags {
    gap: 6px;
    margin-top: 14px;
  }

  .service-tags span {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .reviews-section {
    min-height: auto;
    margin-top: 92px;
    padding: 0;
  }

  .reviews-sticky {
    position: relative;
    height: auto;
    min-height: auto;
    justify-content: flex-start;
    overflow: visible;
    padding: max(86px, calc(env(safe-area-inset-top) + 72px)) 0 30px;
  }

  .reviews-intro {
    margin-bottom: 20px;
    padding: 0 9px;
  }

  .reviews-intro h2 {
    font-size: clamp(36px, 9.4vw, 46px);
    line-height: 1.04;
  }

  .reviews-intro span {
    max-width: 350px;
    font-size: 16px;
    line-height: 1.32;
  }

  .reviews-window {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 9px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-window::-webkit-scrollbar {
    display: none;
  }

  .reviews-track {
    gap: 12px;
    padding: 0 9px 10px;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .review-card {
    opacity: 1;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transform: none;
  }

  .reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 44px;
    margin-top: 14px;
    padding: 0 18px;
  }

  .reviews-arrow {
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    color: var(--page-bg);
    background: var(--page-text);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
  }

  .reviews-arrow:hover,
  .reviews-arrow:focus-visible {
    background: var(--magenta);
    transform: scale(1.06);
  }

  .reviews-arrow:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
  }

  .reviews-arrow:disabled {
    cursor: default;
    opacity: 0.46;
    transform: none;
  }

  .reviews-arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .reviews-count {
    min-width: 54px;
    color: var(--muted-72);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
  }

  .home-articles {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 18px);
    margin-top: 92px;
    padding: 16px 0 0;
  }

  .home-articles-copy {
    text-align: center;
  }

  .home-articles-copy h2 {
    max-width: 340px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(38px, 10.2vw, 52px);
  }

  .home-article-card.article-card a {
    min-height: 290px;
    padding: 24px;
  }

  .home-article-card.article-card h3 {
    font-size: clamp(30px, 8.2vw, 40px);
  }

  .receipt-work {
    min-height: 330vh;
    margin-top: 48px;
  }

  .receipt-work-sticky {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 22px;
    width: calc(100% - 18px);
    padding: 104px 0 34px;
  }

  .receipt-work-intro {
    max-width: 100%;
    text-align: center;
  }

  .receipt-work-intro h2 {
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(38px, 10.2vw, 50px);
    line-height: 1.05;
  }

  .receipt-work-intro span {
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.34;
  }

  .receipt-window {
    height: min(500px, 58svh);
    min-height: 480px;
    filter: drop-shadow(7px 8px 0 rgba(1, 18, 43, 0.22));
  }

  .receipt-window::before {
    inset: 50px 7px 8px;
  }

  .receipt-window::after {
    right: 24px;
    bottom: 18px;
    width: 82px;
    height: 16px;
  }

  .receipt-slot {
    right: 0;
    left: 0;
    height: 76px;
    border-radius: 18px 18px 12px 12px;
    box-shadow: 6px 7px 0 rgba(1, 18, 43, 0.2);
  }

  .receipt-reset {
    top: 9px;
    right: 9px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 9px;
    box-shadow: 2px 3px 0 rgba(1, 18, 43, 0.16);
  }

  .receipt-slot::before {
    right: 20px;
    bottom: 15px;
    left: 20px;
    height: 13px;
  }

  .receipt-slot::after {
    right: 42px;
    bottom: 19px;
    left: 42px;
    height: 4px;
  }

  .receipt-case {
    top: 64px;
    right: 5%;
    left: 5%;
    min-height: 388px;
    padding: 19px 16px;
    gap: 11px;
    box-shadow: 7px 8px 0 rgba(1, 18, 43, 0.18);
  }

  .receipt-case-head {
    gap: 5px;
    padding-bottom: 10px;
  }

  .receipt-case-head strong {
    font-size: clamp(28px, 8vw, 36px);
  }

  .receipt-case dl {
    gap: 10px;
  }

  .receipt-case dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .receipt-case dt {
    font-size: 11px;
  }

  .receipt-case dd {
    font-size: 12.5px;
    line-height: 1.22;
  }

  .receipt-case blockquote {
    padding: 9px 10px;
  }

  .receipt-case blockquote p {
    font-size: 11.5px;
    line-height: 1.2;
  }

  .receipt-tags {
    gap: 6px;
  }

  .receipt-tags li {
    min-height: 24px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .review-card,
  .review-card-feature {
    flex-basis: min(78vw, 330px);
    min-height: clamp(300px, 40svh, 360px);
    max-height: none;
  }

  .review-card {
    gap: 10px;
    padding: 16px 17px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .review-card blockquote p {
    font-size: 14px;
    line-height: 1.22;
  }

  .review-card-feature blockquote p {
    font-size: 14px;
    line-height: 1.12;
  }

  .review-stars {
    font-size: 15px;
  }

  .review-card strong {
    font-size: 13px;
  }

  .review-card footer span {
    font-size: 10px;
  }

  /* Legibility beats bag-art fidelity here: the form may spill slightly
     past the bag's printed frame on small screens. */
  .bag-form {
    left: clamp(22px, 6vw, 40px);
    right: clamp(22px, 6vw, 40px);
    top: 11%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .bag-form label {
    gap: 4px;
    font-size: 12px;
  }

  .bag-form input,
  .bag-form textarea {
    padding: 8px 10px;
  }

  .bag-form jelly-input {
    height: 38px;
    --jelly-input-font-size: 15px;
    --jelly-input-padding-inline: 10px;
  }

  .bag-form textarea {
    min-height: 96px;
  }

  .bag-form jelly-textarea {
    --jelly-textarea-font-size: 15px;
    --jelly-textarea-padding-block: 8px;
    --jelly-textarea-padding-inline: 10px;
    --jelly-textarea-min-height: 96px;
    --jelly-textarea-max-height: 96px;
  }

  .bag-title {
    font-size: clamp(26px, 7.4vw, 36px);
    padding-bottom: 12px;
  }

  .bag-submit {
    bottom: auto;
    top: 100%;
    margin-top: 20px;
    width: min(100%, 220px);
    /* reset tear scatter — on mobile the bag is smaller and scatter looks off */
    transform: translate3d(0, 0, 0);
  }

  .loop-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 96px 9px 52px;
  }

  .loop-hero h2 {
    max-width: 330px;
    font-size: clamp(40px, 10.4vw, 50px);
    line-height: 1.12;
  }

  .loop-hero p {
    max-width: min(100%, 350px);
    font-size: clamp(20px, 5.2vw, 24px);
    line-height: 1.36;
  }

}

@media (min-width: 641px) and (max-width: 820px) {
  .receipt-work-sticky {
    gap: 16px;
    padding: 64px 0 16px;
  }

  .receipt-work-intro h2 {
    max-width: 520px;
    font-size: clamp(42px, 6.4vw, 48px);
  }

  .receipt-work-intro span {
    max-width: 500px;
  }

  .receipt-window {
    height: min(560px, 62svh);
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .receipt-work-sticky {
    position: relative;
    top: auto;
    min-height: 330vh;
    display: block;
    padding: 78px 0 0;
    overflow: visible;
  }

  .receipt-work-intro {
    margin-bottom: 16px;
  }

  .receipt-window {
    position: sticky;
    top: 84px;
    height: min(520px, calc(100svh - 112px));
    min-height: min(480px, calc(100svh - 112px));
  }
}

@media (min-width: 821px) and (max-height: 720px) {
  .reviews-sticky {
    justify-content: flex-start;
    padding: 68px 0 24px;
  }

  .reviews-intro {
    margin-bottom: 18px;
  }

  .reviews-intro h2 {
    font-size: clamp(34px, 7vh, 52px);
    line-height: 1.02;
  }

  .reviews-intro span {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.3;
  }

  .review-card {
    min-height: clamp(210px, 37vh, 300px);
    max-height: calc(100svh - 230px);
    gap: 12px;
    padding: 20px;
  }

  .review-card blockquote p {
    font-size: clamp(15px, 2.8vh, 18px);
    line-height: 1.25;
  }

  .review-card-feature blockquote p {
    font-size: clamp(18px, 3.6vh, 24px);
    line-height: 1.08;
  }

  .review-card footer span {
    font-size: 11px;
  }
}

@media (max-height: 720px) {
  .bag-mouth-frame,
  .paper-bag {
    width: min(560px, 88vw, 70svh);
  }

  .bag-title {
    padding-bottom: 10px;
    font-size: clamp(26px, 6.8vh, 40px);
  }

  .bag-form {
    top: 11.5%;
    gap: 7px;
  }

  .bag-form label {
    gap: 4px;
    font-size: 11px;
  }

  .bag-form jelly-input {
    height: 38px;
    --jelly-input-font-size: 14px;
    --jelly-input-padding-inline: 10px;
  }

  .bag-form jelly-textarea {
    --jelly-textarea-font-size: 14px;
    --jelly-textarea-padding-block: 8px;
    --jelly-textarea-padding-inline: 10px;
    --jelly-textarea-min-height: 96px;
    --jelly-textarea-max-height: 96px;
  }

  .bag-submit {
    bottom: 5.5%;
    width: min(100%, 220px);
  }
}

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

  .hero-copy,
  .scroll-cue,
  .scroll-cue span,
  .scroll-cue svg,
  .bag-scroll-hint {
    animation: none;
  }

  .paper-bag,
  .service-candy,
  .service-row,
  .services-panel,
  .services-panel-copy,
  .reviews-intro,
  .review-card,
  .reviews-track,
  .service-tags span {
    transition: none;
  }

  .services-panel-copy,
  .service-row,
  .reviews-intro,
  .review-card,
  .receipt-work-intro,
  .receipt-case,
  .service-tags span {
    opacity: 1;
    transform: none;
  }

  .reviews-section {
    min-height: auto;
  }

  .reviews-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .reviews-track {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    transform: none;
  }

  .receipt-work {
    min-height: auto;
  }

  .receipt-work-sticky {
    position: relative;
    min-height: auto;
    overflow: visible;
  }

  .receipt-window {
    height: auto;
    overflow: visible;
  }

  .receipt-roll {
    display: grid;
    gap: 24px;
    height: auto;
    transform: none;
  }

  .receipt-slot,
  .receipt-window::before,
  .receipt-window::after {
    display: none;
  }

  .receipt-case {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    opacity: 1;
    transform: none;
  }

  .receipt-work.is-resetting .receipt-case {
    animation: none;
  }
}
