/* Figma 510:303 — 08 / QT IN REAL LIFE / Brand Core palette.
   Homepage-scoped styles; legacy pages keep style.css. */
:root {
  --green-deep: #2e4b21;
  --green-dark: #2e4b21;
  --ink: #2e4b21;
  --cream: #f9f8f1;
  --pink: #f5b1cb;
  --pink-hot: #f26fa8;
  --lime: #c5e748;
  --pale: #e9f3be;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Figtree", sans-serif;
  --gutter: clamp(22px, 4.45vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 115px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4,
.wordmark,
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: "opsz" 14;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
h1 {
  font-size: clamp(48px, 4.73vw, 82px);
}
h2 {
  font-size: clamp(36px, 4.1vw, 68px);
}
h3 {
  font-size: 28px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
  color: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  border: 0;
}
a,
button {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 5px;
}
section[id],
footer[id] {
  scroll-margin-top: 12px;
}
[hidden] {
  display: none !important;
}
.section-pad {
  padding: 64px var(--gutter);
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.045em;
  line-height: 1.5;
}
.lead {
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: 1.45;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  padding: 16px 28px;
  background: var(--lime);
  border: 1px solid transparent;
  border-radius: 40px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn:hover {
  background: #d2ed78;
  transform: translateY(-2px);
}
.btn.small {
  font-size: 14px;
  min-height: 46px;
  padding: 12px 21px;
}
.btn.outline {
  border-color: var(--ink);
  background: var(--cream);
}
.btn.full {
  width: 100%;
}
.plain {
  background: none;
  padding: 10px 4px;
}
.announcement {
  background: var(--ink);
  color: var(--cream);
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.site-header {
  height: 104px;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--pink);
  position: relative;
  z-index: 10;
}
.wordmark {
  font-size: 36px;
  white-space: nowrap;
}
.nav-capsule {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--cream);
  border-radius: 40px;
  padding: 7px 24px 7px 8px;
  font-size: 17px;
}
.nav-capsule .btn {
  min-height: 48px;
  padding: 13px 26px;
}
.menu {
  position: absolute;
  right: var(--gutter);
  top: 90px;
  padding: 22px 28px;
  box-shadow: 0 16px 40px #2e4b2120;
  background: var(--cream);
  border-radius: 22px;
  min-width: 260px;
}
.menu a {
  display: block;
  padding: 12px 0;
}
.menu a:hover {
  text-decoration: underline;
}
.hero {
  background: var(--pink);
  display: grid;
  grid-template-columns: 1fr 1.045fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
  min-height: 754px;
}
.hero-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-copy h1 {
  max-width: 650px;
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 12px;
  margin-top: 8px;
}
.hero-highlights > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-highlights img {
  width: 62px;
  height: 62px;
}
.hero-highlights strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(16px, 1.5vw, 22px);
  letter-spacing: -0.04em;
}
.hero-media {
  height: 596px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.hero-media img,
.hero-media video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.wave {
  width: 100%;
  height: 64px;
  max-width: none;
}
.wave.tall {
  height: 80px;
}
.flavors h2 {
  text-align: center;
  font-size: clamp(34px, 3.8vw, 58px);
  margin-bottom: 36px;
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.flavor-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.flavor-card > a:first-child {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.flavor-card img {
  width: 100%;
  aspect-ratio: 310/244;
  object-fit: contain;
  transition: transform 0.35s;
}
.flavor-card:hover img {
  transform: rotate(-4deg) scale(1.05);
}
.flavor-card h3 {
  font-size: 23px;
}
.flavor-card p {
  font-size: 16px;
  min-height: 44px;
}
.ritual {
  background: var(--lime);
  padding-bottom: 80px;
}
.ritual h2 {
  text-align: center;
  margin-bottom: 50px;
}
.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.ritual-grid article {
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
}
.ritual-grid img {
  width: 100%;
  aspect-ratio: 420/330;
  object-fit: cover;
  border-radius: 22px;
}
.ritual-grid img.contain {
  object-fit: contain;
}
.ritual-grid article > div {
  padding: 24px 24px 28px;
}
.ritual-grid p {
  font-size: 19px;
  margin-top: 16px;
}
.packet-scroll {
  height: 210vh;
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.packet-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 660px;
  max-height: 1100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 38px var(--gutter) 24px;
}
.packet-stage h2 {
  text-align: center;
  font-size: clamp(42px, 5.7vw, 88px);
  z-index: 2;
}
.packet-scene {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 1440px;
  min-height: 0;
}
.reveal-packet {
  position: absolute;
  left: 25%;
  top: 0;
  width: 50%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
}
.ingredient-word {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  position: absolute;
  font-size: clamp(26px, 4.7vw, 76px);
  will-change: transform;
}
.ingredient-word small {
  font-size: 0.4em;
  letter-spacing: 0.04em;
}
.iron {
  left: 3%;
  top: 29%;
}
.vitamin {
  right: 0;
  top: 49%;
  font-size: clamp(24px, 4.1vw, 64px);
}
.collagen {
  left: 7%;
  top: 78%;
}
.peach-fruit {
  position: absolute;
  right: 12%;
  top: 7%;
  width: 11%;
  height: auto;
  will-change: transform;
}
.packet-signoff {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
}
.scroll-progress {
  width: 120px;
  height: 3px;
  background: #ffffff30;
  margin-top: 16px;
  overflow: hidden;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
}
.explorer {
  background: var(--pale);
  text-align: center;
  padding-bottom: 82px;
}
.section-intro {
  font-size: 23px;
  margin-top: 20px;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
}
.explorer-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
  background: var(--cream);
  border-radius: 28px;
  padding: 42px 48px;
  min-height: 436px;
  text-align: left;
}
.story {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.story h3 {
  font-size: 49px;
}
.story > p:not(.eyebrow) {
  font-size: 22px;
}
.ingredient-details details {
  border-bottom: 1px solid #2e4b2125;
}
.ingredient-details details:last-child {
  border: 0;
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 88px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 25px;
}
details[open] > summary::after {
  content: "−";
}
.ingredient-details summary {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ingredient-details img {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}
details p {
  padding: 0 0 22px;
  line-height: 1.55;
  font-size: 17px;
}
.mix-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 25px;
}
.mix-steps li {
  display: flex;
  gap: 22px;
  align-items: center;
}
.mix-steps b {
  background: var(--lime);
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mix-steps h4 {
  font-size: 26px;
  margin-bottom: 7px;
}
.flavor-notes p {
  padding: 22px 0;
  border-bottom: 1px solid #2e4b2125;
}
.flavor-notes strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 8px;
}
.shop > h2 {
  text-align: center;
  margin-bottom: 58px;
}
.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.gallery-main {
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 620/720;
  object-fit: cover;
}
.gallery-main img.contain {
  object-fit: contain;
}
.thumbnails {
  display: flex;
  gap: 20px;
  margin: 22px 0;
}
.thumbnails button {
  width: 33.333%;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
}
.thumbnails button[aria-pressed="true"] {
  border-color: var(--ink);
}
.thumbnails img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}
.gallery > .eyebrow {
  margin-top: 22px;
}
.buy-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.buy-box > h3 {
  font-size: 48px;
}
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 20px;
}
.check-list li:before {
  content: "✓";
  margin-right: 12px;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
legend,
.quantity-row > label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.flavor-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.flavor-options label {
  position: relative;
}
.flavor-options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.flavor-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--ink);
  border-radius: 40px;
  padding: 15px 8px;
  min-height: 55px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.flavor-options input:checked + span {
  background: var(--lime);
  border-color: var(--lime);
}
.flavor-options input:focus-visible + span {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.quantity-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.quantity-row > label {
  margin: 0;
}
.stepper {
  display: flex;
  align-items: center;
  background: var(--lime);
  border-radius: 35px;
  padding: 4px 10px;
}
.stepper button {
  background: none;
  width: 38px;
  height: 44px;
  font-size: 24px;
}
.stepper input {
  width: 45px;
  border: 0;
  background: none;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}
.stepper input::-webkit-inner-spin-button {
  appearance: none;
}
.routine {
  display: grid;
  gap: 12px;
}
.routine label {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #2e4b2170;
  padding: 20px;
  border-radius: 14px;
  cursor: pointer;
}
.routine label:has(input:checked) {
  border: 2px solid var(--ink);
  padding: 19px;
  background: #e9f3be60;
}
.routine input {
  accent-color: var(--ink);
  width: 18px;
  height: 18px;
}
.routine small {
  display: block;
  margin-top: 8px;
  font-size: 16px;
}
.price {
  margin-left: auto;
  white-space: nowrap;
}
.preview-note {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.8;
}
.buy-box > .preview-note {
  margin-top: -10px;
  text-align: center;
}
.product-faq {
  scroll-margin-top: 24px;
}
.product-faq details {
  border-bottom: 1px solid #2e4b2160;
}
.product-faq summary {
  font-size: 19px;
  min-height: 60px;
}
.variety {
  background: var(--pink-hot);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 680px;
}
.variety h2,
.closing h2 {
  font-size: clamp(42px, 4.8vw, 74px);
}
.variety > div:first-child,
.closing > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.variety img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.variety > div:last-child .eyebrow {
  text-align: center;
  margin-top: 25px;
}
.life {
  background: var(--pink);
  padding: 52px 0 48px;
}
.life-heading {
  text-align: center;
  padding: 0 var(--gutter) 42px;
}
.life-heading h2 {
  margin-top: 16px;
}
.carousel {
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel:active {
  cursor: grabbing;
}
.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 0 var(--gutter);
}
.carousel figure {
  width: 300px;
  flex-shrink: 0;
  user-select: none;
}
.carousel img {
  width: 300px;
  height: 416px;
  object-fit: cover;
  border-radius: 22px;
  pointer-events: none;
}
.carousel figcaption {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  margin-top: 18px;
  letter-spacing: -0.025em;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px var(--gutter) 0;
}
.carousel-controls > div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-controls .plain {
  font-size: 25px;
  width: 44px;
}
.carousel-controls > strong {
  font-family: var(--font-display);
  font-size: 20px;
}
.closing {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 650px;
}
.closing > img {
  width: 100%;
  max-height: 530px;
  object-fit: contain;
}
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 68px;
  padding-bottom: 42px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.8fr 1fr 1fr 1fr;
  gap: 55px;
  min-height: 360px;
}
.footer h2 {
  font-size: 42px;
}
.signup > p {
  margin: 22px 0;
  font-size: 20px;
}
.signup small {
  display: block;
  font-size: 13px;
  margin-top: 22px;
}
.email-field {
  display: flex;
  align-items: center;
  background: var(--cream);
  color: var(--ink);
  padding: 8px 16px 8px 24px;
  border-radius: 36px;
  min-height: 64px;
}
.email-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 10px 0;
  outline-offset: 0;
}
.email-field button {
  white-space: nowrap;
  background: none;
  font-weight: 800;
  padding: 12px;
}
.footer .news-form > p {
  color: var(--cream) !important;
}
.footer-grid h3 {
  font-size: 23px;
  margin-bottom: 22px;
}
.footer-grid > div:not(:first-child) > a {
  display: block;
  font-size: 18px;
  margin-bottom: 14px;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-wordmark {
  display: block;
  text-align: center;
  font-size: clamp(80px, 16vw, 260px);
  color: var(--lime);
  margin: 38px 0;
  white-space: nowrap;
}
.footer-wordmark:hover {
  text-decoration: none !important;
}
.legal {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
dialog {
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 24px;
  padding: 32px;
  width: min(560px, calc(100% - 32px));
  max-height: 85vh;
}
dialog::backdrop {
  background: #172b2070;
  backdrop-filter: blur(5px);
}
.dialog-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.dialog-heading h2 {
  font-size: 36px;
}
.bag-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #2e4b2130;
}
.bag-item img {
  width: 65px;
  height: 95px;
  object-fit: contain;
}
.bag-item p {
  font-size: 15px;
}
.bag-item .plain {
  margin-left: auto;
  font-size: 14px;
  text-decoration: underline;
}
dialog > .preview-note {
  margin: 24px 0;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 99;
  left: 12px;
  top: 12px;
  background: var(--cream);
  padding: 15px;
}
@media (min-width: 1700px) {
  .section-pad,
  .site-header,
  .carousel-controls {
    padding-left: max(var(--gutter), calc((100vw - 1540px) / 2));
    padding-right: max(var(--gutter), calc((100vw - 1540px) / 2));
  }
}
@media (max-width: 1100px) {
  .hero {
    gap: 30px;
    min-height: 650px;
  }
  .hero-media {
    height: 520px;
  }
  .hero-highlights {
    gap: 6px;
  }
  .purchase-grid {
    gap: 32px;
  }
  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .explorer-panel {
    gap: 32px;
    padding: 32px;
  }
  .story h3 {
    font-size: 40px;
  }
  .story > p:not(.eyebrow) {
    font-size: 20px;
  }
  .footer-grid {
    gap: 28px;
    grid-template-columns: 2.3fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2/4;
  }
  .ritual-grid h3 {
    font-size: 25px;
  }
  .ritual-grid article > div {
    padding: 22px 16px;
  }
  .ritual-grid p {
    font-size: 17px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .section-pad {
    padding: 48px 22px;
  }
  .site-header {
    height: 88px;
    padding: 16px 20px;
  }
  .wordmark {
    font-size: 27px;
  }
  .nav-capsule {
    gap: 12px;
    padding: 5px 14px;
    font-size: 14px;
  }
  .nav-capsule > .btn {
    display: none;
  }
  .nav-capsule .plain {
    padding: 10px 0;
  }
  .announcement {
    height: 34px;
    font-size: 11px;
  }
  .menu {
    top: 78px;
    right: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 22px;
    padding-bottom: 32px;
    min-height: 0;
  }
  .hero-copy {
    gap: 22px;
  }
  .hero-copy h1 {
    font-size: clamp(44px, 9vw, 64px);
  }
  .hero-highlights {
    max-width: 460px;
    margin-top: 0;
  }
  .hero-highlights strong {
    font-size: 18px;
  }
  .hero-highlights img {
    width: 48px;
    height: 48px;
  }
  .hero-media {
    height: auto;
    aspect-ratio: 1.07;
  }
  .hero-copy .eyebrow {
    font-size: 12px;
  }
  .wave {
    height: 36px;
  }
  .wave.tall {
    height: 44px;
  }
  .flavor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 14px;
  }
  .flavor-card {
    gap: 10px;
  }
  .flavor-card h3 {
    font-size: 23px;
  }
  .flavor-card p {
    font-size: 15px;
    min-height: 42px;
  }
  .flavor-card .btn {
    width: 100%;
    padding: 11px 6px;
    font-size: 12px;
  }
  .flavor-card img {
    aspect-ratio: 0.86;
  }
  .flavors h2 {
    font-size: 35px;
    margin-bottom: 28px;
  }
  .ritual h2 {
    margin-bottom: 32px;
  }
  .ritual-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ritual-grid article {
    max-width: 480px;
    width: 100%;
    margin: auto;
  }
  .ritual-grid article > div {
    padding: 22px 24px 28px;
  }
  .ritual-grid h3 {
    font-size: 29px;
  }
  .ritual-grid p {
    font-size: 18px;
  }
  .packet-scroll {
    height: 175svh;
  }
  .packet-stage {
    min-height: 580px;
    height: 100svh;
    max-height: 850px;
    padding: 35px 18px 22px;
  }
  .packet-stage h2 {
    font-size: clamp(35px, 8.6vw, 60px);
  }
  .reveal-packet {
    left: 12%;
    width: 76%;
    top: 0;
  }
  .ingredient-word {
    font-size: clamp(24px, 6vw, 38px);
  }
  .iron {
    left: 0;
    top: 21%;
  }
  .vitamin {
    right: 0;
    top: 51%;
    font-size: clamp(22px, 5.5vw, 34px);
  }
  .collagen {
    left: 0;
    top: 82%;
  }
  .peach-fruit {
    width: 19%;
    right: 4%;
    top: 6%;
  }
  .packet-signoff {
    font-size: 20px;
  }
  .explorer h2 {
    font-size: 37px;
  }
  .section-intro {
    font-size: 19px;
  }
  .tabs {
    gap: 8px;
    margin: 26px 0;
  }
  .tabs .btn {
    padding: 12px 13px;
    min-height: 48px;
    font-size: 13px;
  }
  .explorer-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 28px 22px;
    min-height: 0;
    border-radius: 22px;
  }
  .story {
    gap: 20px;
  }
  .story h3 {
    font-size: 38px;
  }
  .story .btn {
    font-size: 16px;
  }
  .ingredient-details summary {
    font-size: 26px;
    gap: 18px;
    min-height: 82px;
  }
  .ingredient-details img {
    width: 46px;
    height: 46px;
  }
  .purchase-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .shop > h2 {
    margin-bottom: 30px;
  }
  .gallery-main img {
    aspect-ratio: 1.08;
  }
  .thumbnails {
    gap: 14px;
    margin: 16px 0;
  }
  .thumbnails img {
    height: 90px;
  }
  .gallery > .eyebrow {
    font-size: 12px;
  }
  .buy-box > h3 {
    font-size: 42px;
  }
  .check-list {
    font-size: 18px;
  }
  .buy-box {
    gap: 22px;
  }
  .flavor-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .variety {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }
  .variety h2,
  .closing h2 {
    font-size: 48px;
  }
  .variety img {
    max-height: 360px;
  }
  .variety > div:last-child .eyebrow {
    font-size: 11px;
    margin-top: 8px;
  }
  .life {
    padding: 40px 0 30px;
  }
  .life-heading {
    padding: 0 22px 30px;
  }
  .life-heading h2 {
    font-size: 38px;
  }
  .carousel figure {
    width: 260px;
  }
  .carousel img {
    width: 260px;
    height: 350px;
  }
  .carousel-track {
    gap: 18px;
    padding: 0 22px;
  }
  .carousel-controls {
    padding: 24px 22px 0;
    flex-wrap: wrap;
    gap: 12px;
  }
  .carousel-controls > strong {
    width: 100%;
    font-size: 18px;
  }
  .carousel-controls > div {
    gap: 8px;
    font-size: 14px;
  }
  .carousel-controls .btn {
    min-height: 44px;
    font-size: 14px;
    padding: 10px 20px;
  }
  .closing {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }
  .closing img {
    max-height: 380px;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 20px;
    min-height: 0;
  }
  .footer-grid > .signup {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer h2 {
    font-size: 35px;
  }
  .footer-grid h3 {
    font-size: 20px;
  }
  .footer-grid > div:not(:first-child) > a {
    font-size: 15px;
  }
  .footer-wordmark {
    font-size: 17vw;
    margin: 45px 0 30px;
  }
  .legal {
    font-size: 12px;
    flex-direction: column;
  }
  .footer {
    padding-bottom: 30px;
  }
  .btn {
    min-height: 54px;
  }
  dialog {
    padding: 24px;
  }
  .dialog-heading h2 {
    font-size: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .packet-scroll {
    height: auto;
  }
  .packet-stage {
    position: relative;
    height: 780px;
    max-height: 100svh;
  }
  .reveal-packet,
  .ingredient-word,
  .peach-fruit {
    transform: none !important;
    opacity: 1 !important;
  }
  .scroll-progress {
    display: none;
  }
}

/* Mobile-first refinement: compact footer, intentional drawers, lighter browsing. */
body:has(dialog[open]) {
  overflow: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  height: 90px;
  background: var(--pink);
  border-bottom: 1px solid #2e4b2110;
}
.nav-capsule {
  gap: 22px;
}
.bag-trigger,
.menu-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.count-badge {
  min-width: 24px;
  height: 24px;
  padding: 2px 6px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pale);
  font-size: 13px;
  font-weight: 700;
}
.menu-lines {
  width: 18px;
  height: 12px;
  display: inline-block;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.menu-trigger:hover .menu-lines {
  height: 8px;
}
.side-panel {
  position: fixed;
  inset: 0 0 0 auto;
  margin: 0;
  width: min(470px, 100%);
  height: 100%;
  height: 100dvh;
  max-height: none;
  max-width: 100%;
  border-radius: 26px 0 0 26px;
  padding: 32px;
  overscroll-behavior: contain;
}
.side-panel[open] {
  display: flex;
  flex-direction: column;
  animation: drawer-in 0.24s ease-out;
}
.side-panel::backdrop {
  background: #172b2060;
  backdrop-filter: blur(4px);
}
.drawer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.drawer-heading h2 {
  font-size: 38px;
  margin-top: 8px;
}
.close-button {
  display: grid;
  place-items: center;
  background: #2e4b210b;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}
.close-button:hover {
  background: var(--lime);
}
.menu-panel {
  background: var(--cream);
}
.menu-panel > .eyebrow {
  font-size: 11px;
  margin-bottom: 20px;
  letter-spacing: 0.09em;
}
.drawer-links {
  display: flex;
  flex-direction: column;
}
.drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
  border-bottom: 1px solid #2e4b2125;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.drawer-links a:hover {
  color: #517731;
}
.drawer-links a > span:last-child {
  font-family: var(--font-body);
  font-size: 22px;
}
.menu-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pink);
  padding: 18px;
  border-radius: 18px;
  margin: 30px 0 24px;
}
.menu-feature img {
  width: 110px;
  height: 140px;
  object-fit: contain;
  flex-shrink: 0;
}
.menu-feature > span {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-feature small {
  font-size: 10px;
  letter-spacing: 0.06em;
}
.menu-feature strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.07;
  letter-spacing: -0.03em;
}
.menu-feature span > span {
  font-size: 14px;
  font-weight: 600;
}
.menu-club {
  margin-top: auto;
  font-size: 14px;
  padding-top: 8px;
}
.menu-club strong {
  display: block;
  margin-top: 7px;
}
.bag-panel .drawer-heading {
  border-bottom: 1px solid #2e4b2120;
  padding-bottom: 24px;
  margin-bottom: 0;
}
.bag-panel .eyebrow {
  font-size: 10px;
}
#bag-items {
  flex: 1;
  padding: 18px 0;
}
.bag-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0 35px;
}
.bag-empty img {
  width: 260px;
  height: 220px;
  object-fit: contain;
}
.bag-empty h3 {
  font-size: 31px;
}
.bag-empty p {
  max-width: 29ch;
  font-size: 17px;
  line-height: 1.5;
}
.bag-bottom {
  border-top: 1px solid #2e4b2120;
  padding-top: 22px;
}
.bag-bottom .preview-note {
  font-size: 13px;
  margin-bottom: 18px;
  text-align: center;
}
.bag-item .plain {
  min-height: 44px;
  min-width: 44px;
}
.bag-item img {
  background: var(--pale);
  border-radius: 12px;
  width: 72px;
  height: 100px;
}
.price {
  font-size: 12px;
  color: #536746;
}
.routine label {
  gap: 10px;
}
.footer {
  padding-top: 42px;
  padding-bottom: 24px;
}
.footer-grid {
  min-height: 0;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 42px;
  padding-bottom: 42px;
}
.footer h2 {
  font-size: 35px;
}
.footer .signup > p {
  font-size: 18px;
  margin: 16px 0 22px;
}
.footer-grid > div:not(:first-child) > a {
  font-size: 16px;
  min-height: 34px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.footer-grid h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.footer-legal {
  margin-top: 34px;
  padding-bottom: 22px;
  max-width: 820px;
  font-size: 12px;
  line-height: 1.6;
  color: #f9f8f1b3;
}
.footer-legal p {
  margin: 0 0 10px;
}
.footer-legal a {
  color: #f9f8f1;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-bottom {
  border-top: 1px solid #f9f8f130;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  font-size: 13px;
  color: #f9f8f1cc;
}
.footer-bottom > a {
  margin-left: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
}
@keyframes drawer-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
  }
  .footer-grid > div:last-child {
    grid-column: 2/4;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }
  .site-header {
    height: 74px;
    padding: 10px 20px;
  }
  .site-header .wordmark {
    font-size: 26px;
  }
  .nav-capsule {
    gap: 17px;
    padding: 3px 15px;
    background: #f9f8f1d9;
  }
  .hero {
    padding-top: 24px;
    gap: 25px;
    padding-bottom: 28px;
  }
  .hero-copy {
    gap: 18px;
  }
  .hero-copy h1 {
    font-size: clamp(38px, 10.5vw, 58px);
  }
  .hero-copy .lead {
    font-size: 18px;
    max-width: 34ch;
    line-height: 1.5;
  }
  .hero-highlights {
    margin-top: 4px;
  }
  .hero-highlights strong {
    font-size: clamp(12px, 3.4vw, 17px);
    white-space: nowrap;
  }
  .hero-highlights img {
    width: 42px;
    height: 42px;
  }
  .hero-highlights > div {
    gap: 8px;
  }
  .hero-media {
    aspect-ratio: 1.2;
  }
  .hero-media img {
    object-position: 50% 40%;
  }
  .section-pad {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .flavor-card h3 {
    font-size: 22px;
  }
  .flavor-card p {
    font-size: 14px;
    line-height: 1.5;
  }
  .flavor-card .btn {
    min-height: 44px;
    font-size: 12px;
  }
  .flavor-card img {
    aspect-ratio: 1;
  }
  .ritual {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }
  .ritual h2 {
    padding: 0 22px;
    font-size: 35px;
    margin-bottom: 26px;
  }
  .ritual-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 22px 14px;
    gap: 16px;
    scroll-padding: 22px;
    scrollbar-width: thin;
    scrollbar-color: var(--ink) transparent;
  }
  .ritual-grid article {
    flex: 0 0 86%;
    max-width: 400px;
    margin: 0;
    scroll-snap-align: start;
  }
  .ritual-grid img {
    aspect-ratio: 1.3;
  }
  .ritual-grid article > div {
    padding: 22px;
  }
  .ritual-grid h3 {
    font-size: 26px;
  }
  .ritual-grid p {
    font-size: 17px;
    margin-top: 12px;
  }
  .packet-scroll {
    height: 145svh;
  }
  .packet-stage {
    top: 74px;
    height: calc(100svh - 74px);
    min-height: 480px;
    padding-top: 24px;
  }
  .packet-stage h2 {
    font-size: clamp(31px, 8.5vw, 54px);
  }
  .packet-signoff {
    font-size: 16px;
  }
  .packet-stage .scroll-progress {
    margin-top: 10px;
  }
  .ingredient-word {
    font-size: clamp(22px, 5.5vw, 35px);
  }
  .vitamin {
    font-size: clamp(20px, 5vw, 32px);
  }
  .explorer-panel {
    padding: 26px 22px;
  }
  .story h3 {
    font-size: 36px;
  }
  .story > p:not(.eyebrow) {
    font-size: 18px;
  }
  .tabs .btn {
    min-height: 48px;
    padding: 10px 12px;
  }
  .gallery-main img {
    aspect-ratio: 1.25;
  }
  .gallery > .btn {
    display: none;
  }
  .gallery > .eyebrow {
    margin-top: 10px;
  }
  .thumbnails img {
    height: 72px;
  }
  .purchase-grid {
    gap: 25px;
  }
  .buy-box {
    gap: 20px;
  }
  .buy-box > h3 {
    font-size: 36px;
  }
  .buy-box > .lead {
    font-size: 18px;
  }
  .check-list {
    font-size: 16px;
    line-height: 1.7;
  }
  .routine label {
    padding: 16px 14px;
  }
  .routine label:has(input:checked) {
    padding: 15px 13px;
  }
  .routine strong {
    font-size: 16px;
  }
  .routine small {
    font-size: 13px;
    margin-top: 5px;
  }
  .routine .price {
    font-size: 10px;
  }
  .stepper button {
    width: 44px;
    height: 44px;
  }
  .preview-note {
    font-size: 12px;
  }
  #add-to-bag {
    min-height: 56px;
  }
  .variety h2,
  .closing h2 {
    font-size: 44px;
  }
  .variety > div:first-child,
  .closing > div {
    gap: 20px;
  }
  .closing {
    padding-bottom: 20px;
  }
  .closing > img {
    max-height: 300px;
  }
  .carousel-controls > div > span {
    font-size: 0;
  }
  .carousel-controls > div > span:after {
    content: "Swipe to explore";
    font-size: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
    padding-bottom: 24px;
  }
  .footer-grid > .signup {
    grid-column: 1/-1;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
    border-top: 1px solid #f9f8f120;
    padding-top: 22px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 22px;
  }
  .footer-grid > div:last-child h3 {
    margin: 0;
    font-size: 17px;
  }
  .footer-grid > div:last-child > a {
    margin: 0;
    font-size: 14px;
  }
  .footer h2 {
    font-size: 32px;
  }
  .footer .signup > p {
    font-size: 17px;
  }
  .footer-grid > div:not(:first-child) > a {
    min-height: 44px;
    margin: 0;
    font-size: 16px;
  }
  .email-field {
    padding-left: 18px;
  }
  .email-field input {
    font-size: 16px;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 16px;
    padding-top: 18px;
    font-size: 12px;
  }
  .footer-bottom > p:nth-child(2) {
    order: 3;
    flex-basis: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
    min-height: 44px;
  }
  .side-panel {
    width: min(430px, 100%);
    border-radius: 20px 0 0 20px;
    padding: 24px 22px max(24px, env(safe-area-inset-bottom));
  }
  .drawer-heading {
    margin-bottom: 24px;
  }
  .drawer-links a {
    font-size: 27px;
    padding: 19px 0;
    min-height: 60px;
  }
  .menu-feature {
    margin: 24px 0 20px;
    padding: 14px;
    gap: 14px;
  }
  .menu-feature img {
    width: 95px;
    height: 115px;
  }
  .menu-feature strong {
    font-size: 23px;
  }
}
@media (max-width: 359px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }
  .site-header .wordmark {
    font-size: 24px;
  }
  .nav-capsule {
    gap: 12px;
    padding: 3px 12px;
  }
  .bag-trigger,
  .menu-trigger {
    gap: 5px;
  }
  .count-badge {
    min-width: 20px;
    height: 20px;
    font-size: 11px;
  }
  .hero-copy .lead {
    font-size: 17px;
  }
  .tabs {
    gap: 6px;
  }
  .tabs .btn {
    font-size: 12px;
    padding: 10px;
  }
  .side-panel {
    border-radius: 0;
  }
  .routine .price {
    max-width: 44px;
    white-space: normal;
    text-align: right;
  }
}
@media (prefers-reduced-motion: reduce) {
  .packet-scroll {
    height: auto;
  }
  .packet-stage {
    position: relative;
    top: 0;
    min-height: 520px;
  }
  .side-panel[open] {
    animation: none;
  }
}
@media (min-width: 761px) {
  .packet-stage {
    top: 90px;
    height: calc(100svh - 90px);
  }
}
@media (max-height: 650px) {
  .packet-scroll {
    height: auto;
  }
  .packet-stage {
    position: relative;
    top: 0;
    height: 650px;
    min-height: 0;
    max-height: none;
  }
  .side-panel .menu-feature {
    margin-top: 18px;
  }
  .drawer-links a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

/* Clear product decisions without unconfirmed prices, quantities, or offers. */
.flavor-intro {
  text-align: center;
  font-size: 20px;
  margin: -14px auto 18px;
  max-width: 620px;
}
.starter-link {
  display: block;
  width: fit-content;
  margin: 0 auto 32px;
  padding: 12px 20px;
  background: var(--pale);
  border-radius: 30px;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}
.starter-link:hover {
  background: var(--lime);
}
.flavor-card {
  position: relative;
}
.starter-badge {
  position: absolute;
  z-index: 1;
  top: -10px;
  right: 0;
  width: 94px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--ink);
  transform: rotate(10deg);
  pointer-events: none;
}
.starter-seal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  fill: var(--pink);
  stroke: var(--ink);
  stroke-width: 0.9;
}
.starter-badge-kicker {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.starter-badge strong {
  position: relative;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.05em;
  text-align: center;
}
.flavor-card p {
  min-height: 48px;
}
#choose-flavor {
  scroll-margin-top: 120px;
}
.mobile-shop-bar {
  display: none;
}
@media (max-width: 760px) {
  .flavor-intro {
    font-size: 17px;
    margin: -10px auto 16px;
  }
  .starter-link {
    font-size: 13px;
    padding: 12px 14px;
    margin-bottom: 24px;
  }
  .starter-badge {
    width: 74px;
    height: 74px;
    top: -8px;
    right: -2px;
    gap: 4px;
  }
  .starter-badge-kicker { font-size: 6px; }
  .starter-badge strong { font-size: 20px; }
  .flavor-card p {
    min-height: 63px;
  }
  #choose-flavor {
    scroll-margin-top: 94px;
  }
  .mobile-shop-bar:not([hidden]) {
    position: fixed;
    inset: auto 0 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--cream);
    border-top: 1px solid #2e4b2120;
    padding: 12px 20px max(12px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px #2e4b2110;
  }
  .mobile-shop-bar > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
  }
  .mobile-shop-bar strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.025em;
  }
  .mobile-shop-bar .btn {
    font-size: 14px;
    min-height: 48px;
    padding: 12px 18px;
  }
  body:has(dialog[open]) .mobile-shop-bar {
    display: none;
  }
  body:has(.mobile-shop-bar:not([hidden])) .carousel-controls {
    padding-bottom: 90px;
  }
}
@media (max-width: 359px) {
  .mobile-shop-bar {
    padding-left: 14px !important;
    padding-right: 14px !important;
    gap: 8px !important;
  }
  .mobile-shop-bar .btn {
    font-size: 12px;
    padding: 12px 14px;
  }
  .mobile-shop-bar strong {
    font-size: 16px;
  }
}

/* Only standalone packet assets: includes responsive sources and dynamic gallery/bag images.
   Gamma lifts shadows more than highlights; the original pixels and transparency stay intact. */
.image-filter-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
img:is([src*="brand-core/7036c-"], [src*="brand-core/93690-"], [src*="brand-core/d1e3c-"], [src*="brand-core/12c63-"]) {
  filter: url("#packet-shadow-lift");
}

/* First-batch signup keeps the storefront intact while stock is on the way. */
.stock-dialog { padding: 44px 32px 30px; text-align: center; overflow-y: auto; }
.stock-dialog .close-button { position: absolute; top: 10px; right: 10px; }
.stock-dialog .eyebrow { margin: 12px 0 18px; font-size: 11px; }
.stock-dialog h2 { font-size: clamp(34px, 7vw, 48px); line-height: 1.05; margin-bottom: 18px; }
.stock-dialog #stock-description { line-height: 1.5; }
.stock-flavor { font-weight: 700; margin-top: 16px; }
.stock-flavor:empty { display: none; }
.stock-form { display: grid; gap: 12px; margin-top: 24px; text-align: left; }
.stock-form label { font-weight: 600; font-size: 14px; }
.stock-form input { min-width: 0; width: 100%; padding: 16px 18px; border: 1px solid var(--ink); border-radius: 12px; background: white; color: var(--ink); font: inherit; font-size: 16px; }
.stock-form input:focus-visible { outline: 3px solid var(--pink-hot); outline-offset: 3px; }
.stock-form .btn { justify-content: center; }
.stock-form .btn:disabled { opacity: .65; cursor: wait; }
.stock-consent, .stock-fine { font-size: 12px; line-height: 1.5; margin-top: 16px; }
.stock-fine { opacity: .75; margin-top: 8px; }
.signup-success { font-weight: 600; font-size: 18px; line-height: 1.5; color: var(--ink, #2e4b21); }
@media(max-width: 480px) { .stock-dialog { padding: 40px 22px 24px; max-height: 90dvh; } }

/* Flavor-colored first-batch invitation and confirmed signup. */
.stock-dialog { --stock-tint: #f5b1cb; padding: 0; max-height: 90dvh; }
.stock-dialog[data-flavor="peach"] { --stock-tint: #ffd1b0; }
.stock-dialog[data-flavor="yuzu"] { --stock-tint: #f6df77; }
.stock-dialog[data-flavor="variety"] { --stock-tint: #dcefa1; }
.stock-dialog .close-button { z-index: 2; background: var(--cream); }
.stock-art { position: relative; height: 155px; display: flex; align-items: center; justify-content: center; background: radial-gradient(ellipse at 50% 95%, #fff9d9 0%, transparent 65%), var(--stock-tint); border-radius: 24px 24px 48% 12%; }
.stock-art img { width: 260px; height: 150px; object-fit: contain; transform: rotate(7deg); }
.stock-art-caption { position: absolute; bottom: 13px; left: 20px; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.stock-spark { position: absolute; color: var(--ink); }
.stock-spark-one { left: 21%; top: 29px; font-size: 32px; transform: rotate(-12deg); }
.stock-spark-two { right: 22%; top: 75px; font-size: 24px; }
.stock-content { padding: 10px 32px 26px; }
.stock-dialog .eyebrow { margin: 12px 0; }
.stock-dialog h2 { font-size: clamp(32px, 7vw, 42px); margin-bottom: 12px; }
.stock-flavor { display: inline-block; padding: 6px 14px; border-radius: 50px; background: var(--stock-tint); font-size: 13px; margin-top: 12px; }
.stock-form { margin-top: 18px; gap: 10px; }
.stock-success-card { text-align: center; padding: 22px 20px; border-radius: 20px; background: var(--pale); }
.stock-success-icon { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 12px; border-radius: 50%; background: var(--ink); color: var(--lime); font-size: 28px; }
.stock-success-card h3 { font-size: 24px; line-height: 1.15; margin-bottom: 10px; }
.stock-success-card p { font-size: 15px; line-height: 1.5; }
.stock-dialog.is-subscribed .stock-flavor, .stock-dialog.is-subscribed .stock-consent, .stock-dialog.is-subscribed .stock-fine { display: none; }
@media(max-width:480px) {
  .stock-dialog { padding: 0; }
  .stock-art { height: 125px; }
  .stock-art img { height: 125px; width: 220px; }
  .stock-art-caption { display: none; }
  .stock-content { padding: 8px 22px 22px; }
  .stock-spark-one { left: 14%; top: 22px; }
  .stock-spark-two { right: 16%; top: 55px; }
}

/* Approved lifestyle collection: center the hero on the drink and packet. */
.gallery { min-width:0; }
.hero-media img { object-position: 50% 65%; }
.gallery .thumbnails { overflow-x:auto; overscroll-behavior-x:contain; gap:10px; padding:4px 2px 10px; margin:16px 0 4px; scrollbar-width:thin; }
.gallery .thumbnails button { flex:0 0 78px; width:78px; border:2px solid transparent; border-radius:12px; }
.gallery .thumbnails button[aria-pressed="true"] { border-color:var(--ink); }
.gallery .thumbnails img { height:90px; }
.gallery .thumbnails [data-approved-photo] img { object-fit:cover; }
.gallery-main img.approved-photo { object-fit:contain; background:#f0efe6; }
.gallery-navigation { display:flex; align-items:center; justify-content:space-between; margin:0 0 20px; font-size:13px; }
.gallery-navigation button { width:44px; height:44px; border:1px solid #2e4b2130; border-radius:50%; background:var(--cream); color:var(--ink); font-size:22px; cursor:pointer; }
.gallery-main:focus-visible { outline:3px solid var(--pink-hot); outline-offset:4px; }
@media(max-width:760px){.hero-media img{object-position:50% 66%}.gallery .thumbnails button{flex-basis:66px;width:66px}.gallery .thumbnails img{height:78px}}

/* Lifestyle moments in the ritual card and closing invitation. */
.ritual-grid img.ritual-lifestyle { object-position:50% 56%; }
.closing > img.closing-lifestyle { height:auto; aspect-ratio:1.05; object-fit:cover; object-position:50% 50%; border-radius:24px; }
@media(max-width:760px){ .closing > img.closing-lifestyle { max-height:none; aspect-ratio:1.1; border-radius:22px; } }

/* Homepage pricing (2026-09-23) */
.card-price { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 4px 0 8px; }
.buy-price { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 14px; }
.buy-price #buy-price { font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1; margin-left: 0; color: var(--ink); }
.buy-price .buy-per { font-size: 14px; color: #2e4b21b3; }
.taster-link { font-size: 14px; margin: 10px 0 0; }
.taster-link a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
