:root {
  --paper: #fbf5df;
  --green: #004c38;
  --green-dark: #00422b;
  --pink: #f8cad0;
  --cherry: #85001d;
  --lime: #9bd476;
  --max-width: 1440px;
  --hero-marquee-height: clamp(58px, 5vw, 72px);
  color-scheme: light;
}

@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/ubuntu-regular.ttf") format("truetype");
}

@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/ubuntu-medium.ttf") format("truetype");
}

@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/ubuntu-bold.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
  overflow-x: clip;
  background: var(--paper);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--green);
  background: var(--paper);
  font-family: "Ubuntu", Arial, sans-serif;
}

html.is-loading,
body.is-loading {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

main {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

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

a {
  color: inherit;
}

.intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  width: 100vw;
  background: #fffdf6;
  overscroll-behavior: none;
  touch-action: none;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro img {
  width: clamp(220px, 32vw, 430px);
  opacity: 0;
  transform: translateY(14px);
  animation: intro-logo 800ms 120ms ease forwards;
}

.intro__line {
  width: 0;
  height: 3px;
  margin: 28px auto 0;
  border-radius: 4px;
  background: var(--green);
  animation: intro-line 900ms 420ms ease forwards;
}

.intro.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #8bcf68, var(--pink));
  transform: scaleX(0);
  transform-origin: left center;
}

.quick-nav {
  position: fixed;
  z-index: 40;
  top: 50%;
  right: 24px;
  display: flex;
  width: 58px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(0 76 56 / 18%);
  border-radius: 29px;
  background: rgb(251 245 223 / 92%);
  box-shadow: 0 14px 35px rgb(0 66 43 / 10%);
  opacity: 0;
  transform: translate(20px, -50%);
  visibility: hidden;
  backdrop-filter: blur(12px);
  transition:
    width 350ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 300ms ease,
    transform 350ms ease,
    visibility 300ms ease;
}

.quick-nav.is-shown {
  opacity: 1;
  transform: translate(0, -50%);
  visibility: visible;
}

.quick-nav:hover,
.quick-nav:focus-within,
.quick-nav.is-open {
  width: 174px;
}

.quick-nav__toggle {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 0;
  color: var(--green);
  background: transparent;
  cursor: pointer;
}

.quick-nav__current {
  flex: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
}

.quick-nav__menu-icon {
  display: grid;
  width: 18px;
  flex: 0 0 18px;
  gap: 3px;
}

.quick-nav__menu-icon i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}

.quick-nav__list {
  display: grid;
  padding: 4px 9px 12px;
}

.quick-nav__list a {
  display: grid;
  min-height: 39px;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  border-radius: 18px;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.quick-nav__list a i {
  display: block;
  width: 7px;
  height: 7px;
  margin: 0 auto;
  border: 1px solid var(--green);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.quick-nav__list a span {
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 180ms ease, transform 250ms ease;
}

.quick-nav:hover .quick-nav__list a span,
.quick-nav:focus-within .quick-nav__list a span,
.quick-nav.is-open .quick-nav__list a span {
  opacity: 1;
  transform: translateX(0);
}

.quick-nav__list a:hover,
.quick-nav__list a:focus-visible,
.quick-nav__list a.is-active {
  background: rgb(155 212 118 / 24%);
}

.quick-nav__list a.is-active i {
  background: var(--green);
  transform: scale(1.45);
}

.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100%, var(--max-width));
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 5vw, 76px);
  transform: translateX(-50%);
}

.brand {
  width: clamp(130px, 15vw, 205px);
}

.menu {
  display: flex;
  gap: clamp(8px, 1.2vw, 18px);
}

.menu a {
  min-width: 0;
  padding: 13px clamp(16px, 1.6vw, 24px) 12px;
  border: 3px solid var(--green);
  border-radius: 0 32px 0 32px;
  background: var(--paper);
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--paper);
  background: var(--green);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
}

.slide {
  position: relative;
  width: min(100%, var(--max-width));
  min-height: 800px;
  margin: 0 auto;
  padding: 110px clamp(28px, 7vw, 110px);
  scroll-margin-top: 88px;
}

.editorial-section::before {
  position: absolute;
  z-index: 0;
  top: 36px;
  right: -0.03em;
  color: rgb(0 76 56 / 4%);
  content: attr(data-word);
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(130px, 20vw, 330px);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.035em;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.editorial-section > * {
  position: relative;
  z-index: 1;
}

.editorial-section > .character-decor,
.editorial-section > .ingredient-decor {
  position: absolute;
  z-index: 0;
}

.character-decor {
  position: absolute;
  z-index: 0;
  width: 520px;
  max-width: none;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  animation: character-float 7s ease-in-out infinite;
}

.character-decor--singing {
  z-index: 2 !important;
  right: -115px;
  bottom: -25px;
  width: 500px;
  opacity: 0.065;
  transform: rotate(-8deg);
}

.character-decor--can {
  bottom: -95px;
  left: -125px;
  width: 490px;
  transform: scaleX(-1) rotate(-7deg);
  animation-delay: -1.5s;
}

.character-decor--laying {
  top: 260px;
  right: -190px;
  width: 650px;
  opacity: 0.075;
  transform: scaleX(-1) rotate(7deg);
  animation-delay: -3s;
}

.character-decor--apple {
  top: 625px;
  left: -175px;
  width: 560px;
  opacity: 0.085;
  transform: rotate(-9deg);
  animation-delay: -4.5s;
}

.character-decor--happy {
  right: -145px;
  bottom: -120px;
  width: 540px;
  opacity: 0.09;
  transform: scaleX(-1) rotate(-8deg);
  animation-delay: -2.5s;
}

.ingredient-decor {
  position: absolute;
  z-index: 0;
  max-width: none;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  animation: ingredient-drift 8s ease-in-out infinite;
}

.ingredient-decor--leaf-one {
  bottom: -120px;
  left: -145px;
  width: 470px;
  transform: rotate(-24deg);
}

.ingredient-decor--leaf-two {
  top: 150px;
  right: -90px;
  width: 390px;
  opacity: 0.06;
  transform: rotate(22deg);
  animation-delay: -2s;
}

.ingredient-decor--malt {
  bottom: -110px;
  left: -165px;
  width: 280px;
  opacity: 0.065;
  transform: rotate(-10deg);
  animation-delay: -4s;
}

.ingredient-decor--leaf-three {
  right: 26%;
  bottom: -230px;
  width: 440px;
  opacity: 0.055;
  transform: rotate(16deg);
  animation-delay: -5s;
}

.hero {
  display: grid;
  height: calc(100svh - var(--hero-marquee-height));
  min-height: 0;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  overflow: clip;
  padding-top: clamp(78px, 7svh, 100px);
  padding-bottom: clamp(10px, 1.5svh, 22px);
}

.hero__illustration {
  --parallax-base-y: -34px;

  align-self: center;
  transform: translate3d(0, var(--parallax-base-y), 0);
}

.hero__illustration img {
  width: min(100%, 620px);
  max-height: calc(100svh - 210px);
  margin: 0 auto;
  object-fit: contain;
}

.hero__content {
  display: flex;
  width: 100%;
  max-width: 600px;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  padding-bottom: 0;
  margin-inline: auto;
  text-align: center;
}

.hero__logo {
  width: min(100%, 430px);
  margin: 0 auto 24px;
}

.hero h1 {
  margin: 0;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 sup,
.section-heading h2 sup {
  font-size: 0.38em;
  line-height: 0;
  vertical-align: super;
}

.hero p {
  margin: 12px 0 24px;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.2;
}

.hero p span {
  white-space: nowrap;
}

.legal-note {
  display: block;
  color: rgb(0 76 56 / 72%);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 600;
  line-height: 1.25;
}

.hero .legal-note {
  margin: -14px 0 16px;
}

.section-heading .legal-note {
  margin-top: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 3px solid var(--green);
  border-radius: 999px;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

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

.button--green {
  color: var(--paper);
  background: var(--green);
}

.brand-marquee {
  position: relative;
  z-index: 8;
  display: flex;
  height: var(--hero-marquee-height);
  align-items: center;
  overflow: hidden;
  border-block: 2px solid rgb(0 76 56 / 18%);
  background: var(--paper);
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 28px;
  padding: 0;
  animation: marquee-shift 23s linear infinite;
}

.brand-marquee span {
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-marquee i {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50% 50% 50% 8%;
  background: var(--pink);
  transform: rotate(45deg);
}

.tape-divider {
  position: relative;
  z-index: 5;
  width: 140%;
  height: clamp(125px, 15vw, 220px);
  margin: clamp(-70px, -5vw, -35px) 0 clamp(-70px, -5vw, -35px) -20%;
  pointer-events: none;
}

.tape-divider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.tape-divider__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: translateX(var(--tape-shift, -6%));
  will-change: transform;
}

.tape-divider__path {
  will-change: stroke-dashoffset;
}

.tape-divider--pink {
  transform: rotate(-1.5deg) scale(1.03);
}

.tape-divider--reverse {
  transform: scaleX(-1) rotate(1deg);
}

.section-heading {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  max-width: 1220px;
  align-items: flex-start;
  gap: clamp(14px, 2vw, 28px);
  margin: 0 auto 54px;
  text-align: left;
}

.section-heading span {
  min-width: 42px;
  padding-top: 12px;
  color: var(--pink);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 700;
}

.section-heading h2 {
  max-width: 1040px;
  margin: 0;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(62px, 8.2vw, 122px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.composition {
  min-height: 840px;
  padding-top: 120px;
}

.composition__art {
  position: relative;
  display: grid;
  width: min(100%, 1218px);
  min-height: clamp(260px, 31vw, 430px);
  grid-template-columns: 0.9fr 1.25fr 0.9fr;
  align-items: start;
  gap: clamp(18px, 3vw, 44px);
  margin: 0 auto;
  color: var(--green);
}

.composition__item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.composition__item p {
  margin: 0;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.composition__item--juice {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  padding-top: clamp(48px, 8vw, 118px);
}

.composition__item--juice img {
  width: clamp(128px, 14vw, 204px);
  margin-bottom: 16px;
}

.composition__item--natural {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
}

.composition__leaf {
  width: clamp(132px, 15vw, 206px);
  margin-bottom: 8px;
}

.composition__item--natural p {
  margin-bottom: clamp(8px, 0.9vw, 14px);
}

.composition__item--natural sup {
  font-size: 0.55em;
  line-height: 0;
  vertical-align: super;
}

.composition__can-crop {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  width: clamp(330px, 37vw, 560px);
  height: clamp(352px, 39.5vw, 598px);
  overflow: visible;
}

.composition__can {
  width: clamp(330px, 37vw, 560px);
  max-width: 100%;
  margin-top: clamp(0px, 1vw, 12px);
  clip-path: inset(0 0 50% 0);
}

.composition__note {
  display: block;
  margin-bottom: clamp(18px, 2vw, 30px);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.15;
  color: rgba(0, 78, 54, 0.72);
}

.composition__item--preservatives {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  padding-top: clamp(48px, 8vw, 118px);
}

.composition__no-preservatives {
  position: relative;
  width: clamp(150px, 17vw, 214px);
  aspect-ratio: 1;
  margin-bottom: 16px;
}

.composition__flask,
.composition__no-sign {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.composition__flask {
  transform: scale(0.68);
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 45px auto 0;
}

.story-step {
  padding: 30px;
  border: 2px solid rgb(0 76 56 / 16%);
  border-radius: 44px 0 44px 0;
  background: rgb(255 253 246 / 65%);
  text-align: center;
}

.story-step__icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 0 auto 28px;
  filter: drop-shadow(0 12px 16px rgb(0 66 43 / 10%));
}

.story-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.story-step__icon--malt {
  align-items: end;
}

.story-step__icon--drop img {
  transform: translateX(4px) scale(1.28);
}

.story-step__icon--malt img {
  width: 72px;
  height: 92px;
  transform: translateY(3px);
}

.story-step h3 {
  margin: 0 0 10px;
  font-size: 30px;
  text-transform: uppercase;
}

.story-step p {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}

.benefits {
  display: flex;
  min-height: 740px;
  flex-direction: column;
  justify-content: center;
}

.benefits .section-heading h2 {
  font-size: clamp(58px, 7.2vw, 108px);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 40px;
}

.benefit {
  padding: 22px;
  text-align: center;
}

.benefit strong {
  display: block;
  min-height: 115px;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(82px, 9vw, 140px);
  line-height: 1;
}

.benefit p {
  max-width: 330px;
  margin: 20px auto 0;
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.18;
}

.benefit--sugar strong {
  display: inline-flex;
  width: clamp(176px, 14vw, 220px);
  min-height: 128px;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
  border-radius: 8px;
  color: white;
  background: #00a33f;
  font-size: clamp(42px, 4vw, 56px);
  transform: rotate(-1deg);
}

.benefit--sugar small {
  width: 100%;
  min-width: 0;
  font-size: 0.32em;
  line-height: 1.05;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.flavors {
  min-height: 1200px;
}

.malt-story {
  min-height: 900px;
}

.malt-story__intro {
  max-width: 930px;
  margin: 0 auto 60px;
  text-align: center;
}

.malt-story__intro p {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 47px);
  line-height: 1.2;
}

.malt-notes {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.malt-note {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: clamp(28px, 2.5vw, 40px) clamp(22px, 2.2vw, 32px);
  border: 3px solid var(--green);
  border-radius: 90px 0 90px 0;
  background: var(--paper);
}

.malt-note:nth-child(2) {
  border-color: #8bcf68;
  border-radius: 0 90px 0 90px;
}

.malt-note:nth-child(3) {
  border-color: var(--pink);
}

.malt-note__number {
  color: var(--pink);
  font-size: 20px;
  font-weight: 700;
}

.malt-note h3 {
  margin: clamp(34px, 4vw, 52px) 0 18px;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-transform: uppercase;
}

.malt-note h3,
.story-step h3,
.recipe-scene__copy h3,
.section-heading h2,
.hero h1 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.malt-note p {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.3;
}

.recipe-scenes {
  display: grid;
  gap: clamp(70px, 10vw, 140px);
  margin-top: clamp(70px, 9vw, 130px);
}

.recipe-scene {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  overflow: hidden;
  padding: 30px 0;
}

.recipe-scene::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  border-radius: 50%;
  background: rgb(155 212 118 / 20%);
  content: "";
  transform: translate(-50%, -50%);
}

.recipe-scene--fruit::before {
  left: 43%;
}

.recipe-scene--malt {
  grid-template-columns: minmax(440px, 0.95fr) minmax(0, 1.05fr);
  overflow: visible;
}

.recipe-scene--malt::before {
  right: auto;
  left: 75%;
  background: rgb(248 202 208 / 28%);
}

.recipe-scene__visual {
  position: relative;
  z-index: 1;
  height: 680px;
}

.recipe-scene__cans {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 5%;
  display: flex;
  width: min(58%, 450px);
  height: 80%;
  align-items: flex-start;
  justify-content: center;
  filter: drop-shadow(0 22px 22px rgb(0 66 43 / 12%));
}

.recipe-scene--malt .recipe-scene__cans {
  top: 14%;
  right: auto;
  left: 21%;
  width: min(39%, 310px);
  height: 70%;
}

.recipe-scene--fruit .recipe-scene__cans,
.recipe-scene--malt .recipe-scene__cans {
  display: none;
}

.recipe-scene__cans img {
  width: 50%;
  height: 100%;
  object-fit: contain;
}

.recipe-scene__cans img:first-child {
  transform: translateX(8%) rotate(-4deg);
}

.recipe-scene__cans img:last-child {
  transform: translateX(-8%) translateY(14px) rotate(4deg);
}

.recipe-scene__climber {
  position: absolute;
  z-index: 2;
  top: -46px;
  bottom: auto;
  left: 2%;
  width: min(66%, 515px);
  max-width: none;
  filter: drop-shadow(0 22px 22px rgb(0 66 43 / 10%));
}

.recipe-scene__climber--fruit {
  top: 12px;
  left: 27%;
  width: auto;
  height: min(94%, 640px);
}

.recipe-scene--malt .recipe-scene__climber {
  top: -8%;
  right: 19%;
  bottom: auto;
  left: auto;
  width: min(38%, 300px);
  transform: rotate(12deg);
  transform-origin: center center;
}

.recipe-scene--malt .recipe-scene__climber--malt-top {
  top: 12px;
  right: 31%;
  width: auto;
  height: min(94%, 640px);
  transform: none;
}

.recipe-scene--malt .recipe-scene__cans img {
  width: 100%;
  transform: none;
}

.recipe-scene__copy {
  position: relative;
  z-index: 2;
}

.recipe-scene--malt .recipe-scene__copy {
  padding-left: clamp(28px, 3vw, 52px);
}

.recipe-scene__copy span {
  display: block;
  margin-bottom: 20px;
  color: #6eaa4d;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recipe-scene--malt .recipe-scene__copy span {
  color: var(--cherry);
}

.recipe-scene__copy h3 {
  margin: 0;
  font-size: clamp(54px, 5.5vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.recipe-scene__copy p {
  max-width: 530px;
  margin: 30px 0 0;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.25;
}

.flavors__showcase {
  display: grid;
  width: 100%;
  margin-inline: auto;
  gap: 70px;
}

.flavor {
  position: relative;
  display: grid;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 520px;
  grid-template-columns: minmax(230px, 0.7fr) 1.3fr;
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
  padding: 38px clamp(28px, 5vw, 70px);
  border: 6px solid var(--green);
  border-radius: 90px 0 90px 0;
}

.flavor > *:not(.ingredient-decor) {
  position: relative;
  z-index: 1;
}

.ingredient-decor--apple {
  top: -95px;
  right: -125px;
  width: 560px;
  opacity: 0.11;
  transform: rotate(12deg);
}

.ingredient-decor--cherry {
  bottom: -120px;
  left: -145px;
  width: 590px;
  opacity: 0.09;
  transform: rotate(-10deg);
  animation-delay: -3s;
}

.flavor--apple {
  color: var(--paper);
  background: var(--green);
}

.flavor--cherry {
  grid-template-columns: 1.3fr minmax(230px, 0.7fr);
  border-color: var(--cherry);
  color: var(--paper);
  background: var(--cherry);
  border-radius: 0 90px 0 90px;
}

.flavor__can {
  height: 470px;
}

.flavor__can img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.flavor:hover .flavor__can img {
  transform: translateY(-8px) rotate(1.5deg);
}

.flavor__copy h3 {
  margin: 0 0 16px;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(78px, 10.5vw, 152px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.flavor__copy {
  min-width: 0;
}

.flavor__copy p {
  max-width: 710px;
  margin: 0;
  font-size: clamp(23px, 2.2vw, 33px);
  line-height: 1.23;
}

.flavor__copy .eyebrow {
  margin-bottom: 14px;
  color: #7fbd57;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flavor--apple .eyebrow {
  color: var(--lime);
}

.flavor--cherry .eyebrow {
  color: var(--pink);
}

.tape-divider--last {
  margin-bottom: -30px;
}

.order {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 820px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
  padding: 120px max(30px, calc((100vw - 1240px) / 2));
  background: var(--paper);
  scroll-margin-top: 88px;
}

.order > *:not(.character-decor):not(.ingredient-decor) {
  position: relative;
  z-index: 1;
}

.order__visual {
  position: relative;
  display: flex;
  height: 590px;
  align-items: flex-end;
  justify-content: center;
}

.order__visual > img {
  width: 43%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgb(0 66 43 / 12%));
}

.order__visual > img:first-child {
  transform: translateX(16%) rotate(-5deg);
}

.order__visual > img:nth-child(2) {
  transform: translateX(-16%) translateY(22px) rotate(5deg);
}

.order__copy {
  max-width: 630px;
}

.order__copy .eyebrow {
  margin: 0 0 16px;
  color: #73af52;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order__copy h2 {
  margin: 0;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: clamp(52px, 5.1vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.order__copy h2 span {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.order__copy h2 sup {
  font-size: 0.34em;
  line-height: 0;
  vertical-align: super;
}

.order__note {
  display: block;
  margin-top: 12px;
  color: rgba(0, 78, 54, 0.68);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1.2;
}

.order__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 30px;
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.25;
}

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

.retailer-card {
  display: grid;
  min-width: 0;
  min-height: 142px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 12px 16px;
  border: 3px solid rgba(0, 78, 54, 0.16);
  border-radius: 28px 28px 0 28px;
  background: rgba(255, 252, 235, 0.74);
}

.retailer-card img {
  width: clamp(58px, 5.6vw, 78px);
  height: clamp(58px, 5.6vw, 78px);
  object-fit: contain;
}

.retailer-card span {
  max-width: 100%;
  color: var(--green);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-align: center;
}

.footer {
  display: grid;
  min-height: 260px;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 44px;
  padding: 80px max(30px, calc((100vw - 1240px) / 2));
  color: var(--paper);
  background: var(--green);
}

.footer__logo {
  filter: brightness(0) invert(1);
}

.footer__info {
  display: grid;
  gap: 7px;
}

.footer p {
  max-width: 760px;
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.footer a {
  display: block;
  color: inherit;
  font-size: 20px;
  text-decoration: none;
}

.footer a + a {
  margin-top: 0;
}

.footer .footer__legal-link {
  max-width: 760px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button--outline {
  border-color: var(--paper);
}

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

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

.animations-ready .js-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.animations-ready .js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-parallax {
  will-change: transform;
}

@keyframes intro-logo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-line {
  to {
    width: min(260px, 65vw);
  }
}

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

@keyframes ingredient-drift {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }

  50% {
    translate: 0 -10px;
    scale: 1.02;
  }
}

@keyframes character-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@media (min-width: 1800px) {
  :root {
    --max-width: 2000px;
    --hero-marquee-height: clamp(68px, 5svh, 76px);
  }

  .header {
    min-height: 128px;
    padding: 24px 100px;
  }

  .brand {
    width: 260px;
  }

  .menu {
    gap: 22px;
  }

  .menu a {
    padding: 17px 28px 16px;
    border-width: 4px;
    font-size: 23px;
  }

  .slide {
    padding-right: 140px;
    padding-left: 140px;
  }

  .hero {
    padding-top: clamp(104px, 9svh, 128px);
    padding-bottom: clamp(12px, 1.6svh, 24px);
  }

  .hero__content {
    max-width: 780px;
  }

  .hero__illustration img {
    width: min(100%, clamp(590px, 58svh, 830px));
    max-height: calc(100svh - var(--hero-marquee-height) - 160px);
  }

  .hero__logo {
    width: min(100%, clamp(360px, 34svh, 520px));
    margin-bottom: clamp(16px, 2svh, 28px);
  }

  .hero h1 {
    font-size: clamp(54px, 5.1svh, 76px);
  }

  .hero p {
    margin: clamp(10px, 1.2svh, 17px) 0 clamp(18px, 1.8svh, 27px);
    font-size: clamp(24px, 2.25svh, 34px);
  }

  .hero .legal-note {
    margin: clamp(-14px, -1svh, -8px) 0 clamp(13px, 1.4svh, 20px);
    font-size: clamp(16px, 1.3svh, 20px);
  }

  .button {
    min-height: clamp(54px, 4.7svh, 68px);
    padding: clamp(12px, 1.2svh, 17px) 34px;
    border-width: 4px;
    font-size: clamp(19px, 1.55svh, 23px);
  }

  .editorial-section::before {
    font-size: 430px;
  }

  .section-heading {
    max-width: 1720px;
    gap: 34px;
    margin-bottom: 72px;
  }

  .section-heading span {
    min-width: 54px;
    font-size: 34px;
  }

  .section-heading h2,
  .benefits .section-heading h2 {
    max-width: 1540px;
    font-size: 150px;
  }

  .composition__art {
    width: min(100%, 1680px);
    min-height: 560px;
  }

  .composition__item p {
    font-size: 42px;
  }

  .composition__item--juice img,
  .composition__leaf {
    width: 260px;
  }

  .composition__no-preservatives {
    width: 270px;
  }

  .composition__can-crop,
  .composition__can {
    width: 700px;
  }

  .composition__can-crop {
    height: 748px;
  }

  .composition__note {
    font-size: 21px;
  }

  .story-steps {
    max-width: 1600px;
    gap: 34px;
    margin-top: 64px;
  }

  .story-step {
    padding: 42px;
  }

  .story-step__icon {
    width: 118px;
    height: 118px;
  }

  .story-step h3 {
    font-size: 38px;
  }

  .story-step p {
    font-size: 24px;
  }

  .benefit strong {
    min-height: 150px;
    font-size: 176px;
  }

  .benefit p {
    max-width: 430px;
    font-size: 42px;
  }

  .benefit--sugar strong {
    width: 280px;
    min-height: 158px;
    font-size: 70px;
  }

  .malt-story__intro {
    max-width: 1200px;
    margin-bottom: 78px;
  }

  .malt-story__intro p {
    font-size: 56px;
  }

  .malt-notes {
    gap: 34px;
  }

  .malt-note {
    min-height: 420px;
    padding: 48px 42px;
  }

  .malt-note h3 {
    font-size: 64px;
  }

  .malt-note p {
    font-size: 29px;
  }

  .recipe-scene {
    min-height: 850px;
  }

  .recipe-scene__copy h3 {
    font-size: 104px;
  }

  .recipe-scene__copy p {
    max-width: 690px;
    font-size: 38px;
  }

  .flavors__showcase {
    gap: 90px;
  }

  .flavor {
    min-height: 680px;
    padding: 52px 84px;
  }

  .flavor__can {
    height: 620px;
  }

  .flavor__copy h3 {
    font-size: 190px;
  }

  .flavor__copy p {
    max-width: 900px;
    font-size: 38px;
  }

  .flavor__copy .eyebrow {
    font-size: 26px;
  }

  .order {
    min-height: 1040px;
    gap: 110px;
    padding: 150px max(80px, calc((100vw - 2000px) / 2));
  }

  .order__visual {
    height: 760px;
  }

  .order__copy {
    max-width: 900px;
  }

  .order__copy .eyebrow {
    font-size: 28px;
  }

  .order__copy h2 {
    font-size: 96px;
  }

  .order__copy > p:not(.eyebrow) {
    max-width: 760px;
    font-size: 38px;
  }

  .retailers {
    max-width: 850px;
    gap: 20px;
  }

  .retailer-card {
    min-height: 184px;
  }

  .retailer-card img {
    width: 96px;
    height: 96px;
  }

  .retailer-card span {
    font-size: 22px;
  }

  .footer {
    min-height: 340px;
    grid-template-columns: 280px 1fr auto;
    gap: 64px;
    padding: 100px max(80px, calc((100vw - 2000px) / 2));
  }

  .footer p,
  .footer a {
    font-size: 24px;
  }
}

@media (max-width: 1280px) {
  .order {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
    gap: clamp(26px, 4vw, 52px);
    padding-right: 128px;
  }

  .order__copy {
    max-width: 100%;
  }

  .order__copy h2 {
    font-size: clamp(42px, 5.2vw, 64px);
  }

  .retailers {
    max-width: 480px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 88px;
  }

  .quick-nav {
    top: auto;
    right: 16px;
    bottom: 16px;
    width: 58px;
    max-height: calc(100vh - 110px);
    transform: translateY(18px);
  }

  .quick-nav.is-shown {
    transform: translateY(0);
  }

  .quick-nav:hover,
  .quick-nav:focus-within {
    width: 58px;
  }

  .quick-nav.is-open {
    width: min(230px, calc(100vw - 32px));
  }

  .quick-nav__list {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 300ms ease, opacity 220ms ease, padding 300ms ease;
  }

  .quick-nav.is-open .quick-nav__list {
    max-height: 360px;
    padding-top: 4px;
    padding-bottom: 12px;
    opacity: 1;
  }

  .quick-nav__list a span {
    opacity: 1;
    transform: none;
  }

  .header {
    position: fixed;
    min-height: 78px;
    padding: 14px 22px;
    background: rgb(251 245 223 / 94%);
    backdrop-filter: blur(10px);
  }

  .brand {
    width: 128px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 11px 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.visually-hidden) {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background: var(--green);
  }

  .menu {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 20px;
    background: var(--paper);
    box-shadow: 0 18px 30px rgb(0 66 43 / 12%);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
  }

  .hero {
    height: calc(100svh - var(--hero-marquee-height));
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    padding-top: 130px;
  }

  .benefit strong {
    min-height: 88px;
  }

  .malt-notes {
    grid-template-columns: 1fr;
  }

  .malt-note {
    min-height: 0;
  }

  .order {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 32px;
    padding: 110px clamp(24px, 6vw, 56px) 90px;
    text-align: center;
  }

  .order__visual {
    width: min(100%, 680px);
    height: clamp(420px, 62vw, 560px);
    flex: 0 0 auto;
  }

  .order__copy {
    width: 100%;
    max-width: 760px;
  }

  .order__copy h2 {
    font-size: clamp(44px, 8vw, 68px);
  }

  .order__copy h2 span {
    white-space: nowrap;
  }

  .order__copy > p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .retailers {
    width: 100%;
    max-width: 620px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .slide {
    min-height: 0;
    padding: 90px 22px;
  }

  .character-decor {
    opacity: 0.065;
    animation: none;
  }

  .character-decor--singing {
    right: -115px;
    bottom: -45px;
    width: 330px;
  }

  .character-decor--can {
    bottom: -50px;
    left: -110px;
    width: 320px;
  }

  .character-decor--laying {
    display: none;
  }

  .character-decor--apple {
    top: 790px;
    left: -115px;
    width: 340px;
  }

  .character-decor--happy {
    right: -110px;
    bottom: -70px;
    width: 350px;
  }

  .ingredient-decor {
    opacity: 0.045;
    animation: none;
  }

  .ingredient-decor--leaf-one {
    bottom: -70px;
    left: -95px;
    width: 290px;
  }

  .ingredient-decor--leaf-two {
    display: none;
  }

  .ingredient-decor--malt {
    bottom: -80px;
    left: -105px;
    width: 160px;
  }

  .ingredient-decor--apple {
    top: -35px;
    right: -85px;
    width: 300px;
    opacity: 0.065;
  }

  .ingredient-decor--cherry {
    bottom: -50px;
    left: -90px;
    width: 320px;
    opacity: 0.055;
  }

  .ingredient-decor--leaf-three {
    right: -90px;
    bottom: -120px;
    width: 280px;
  }

  .hero {
    display: flex;
    height: calc(100svh - var(--hero-marquee-height));
    min-height: 0;
    flex-direction: column-reverse;
    justify-content: center;
    gap: clamp(8px, 1.6svh, 14px);
    padding-top: 76px;
    padding-bottom: 8px;
  }

  .hero__content {
    padding: 0;
  }

  .hero__illustration {
    --parallax-base-y: -18px;
  }

  .hero__logo {
    width: 184px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1;
  }

  .hero p {
    margin: 6px 0 12px;
    font-size: 16px;
  }

  .hero__illustration img {
    width: min(100%, 400px);
    max-height: calc(100svh - 500px);
  }

  .tape-divider {
    width: 170%;
    height: 120px;
    margin: -48px 0;
    margin-left: -35%;
  }

  .tape-divider--pink {
    transform: rotate(-1.5deg);
  }

  .tape-divider--reverse {
    transform: scaleX(-1);
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading span {
    display: block;
    min-width: 0;
    margin-bottom: 10px;
    padding-top: 0;
    font-size: 20px;
  }

  .section-heading h2 {
    width: 100%;
    font-size: clamp(36px, 11.5vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .composition .section-heading h2 {
    font-size: clamp(28px, 9vw, 44px);
  }

  .benefits .section-heading h2 {
    font-size: clamp(34px, 10vw, 49px);
  }

  .editorial-section::before {
    top: 58px;
    font-size: 138px;
  }

  .composition {
    min-height: 0;
    padding-top: 100px;
  }

  .composition__art {
    width: 100%;
    max-width: none;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    margin-left: 0;
  }

  .composition__item--juice,
  .composition__item--preservatives {
    grid-column: auto;
    grid-row: auto;
    padding-top: 0;
  }

  .composition__item--natural {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    order: 2;
  }

  .composition__item--juice {
    order: 1;
  }

  .composition__item--preservatives {
    order: 3;
  }

  .composition__item--juice img {
    width: 130px;
  }

  .composition__leaf {
    width: 132px;
  }

  .composition__can-crop {
    grid-column: auto;
    grid-row: auto;
    order: 4;
    width: min(100%, 360px);
    height: 385px;
  }

  .composition__can {
    width: min(100%, 360px);
  }

  .composition__no-preservatives {
    width: 150px;
  }

  .story-steps {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .story-step {
    padding: 25px 22px;
  }

  .benefits {
    min-height: 900px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
  }

  .benefit {
    padding: 14px 8px;
  }

  .benefit strong {
    min-height: 0;
    font-size: 67px;
  }

  .benefit p {
    margin-top: 10px;
    font-size: 23px;
  }

  .benefit--sugar strong {
    width: 112px;
    min-height: 96px;
    font-size: 43px;
  }

  .benefit--sugar small {
    font-size: 20px;
  }

  .flavors {
    padding-top: 110px;
  }

  .malt-story {
    min-height: 0;
  }

  .malt-story__intro {
    margin-bottom: 35px;
    text-align: left;
  }

  .malt-story__intro p {
    font-size: 27px;
  }

  .malt-notes {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .malt-note {
    min-height: 0;
    padding: 30px 25px;
    border-radius: 52px 0 52px 0;
  }

  .malt-note:nth-child(2) {
    border-radius: 0 52px 0 52px;
  }

  .malt-note h3 {
    margin: 28px 0 13px;
    font-size: clamp(28px, 9.5vw, 42px);
  }

  .malt-note p {
    font-size: clamp(17px, 5.4vw, 20px);
    overflow-wrap: anywhere;
  }

  .recipe-scenes {
    gap: 54px;
    margin-top: 55px;
  }

  .recipe-scene,
  .recipe-scene--malt {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0 42px;
    text-align: center;
  }

  .recipe-scene--malt {
    flex-direction: column-reverse;
  }

  .recipe-scene::before {
    top: 22%;
    left: 50%;
    width: 410px;
    height: 410px;
    transform: translate(-50%, -50%);
  }

  .recipe-scene--fruit::before {
    left: 43%;
  }

  .recipe-scene--malt::before {
    right: auto;
    left: 50%;
  }

  .recipe-scene__visual {
    width: 100%;
    height: 520px;
  }

  .recipe-scene__cans {
    top: 0;
    right: 2%;
    left: auto;
    width: 68%;
    height: 82%;
  }

  .recipe-scene--malt .recipe-scene__cans {
    top: 15%;
    right: auto;
    left: 22%;
    width: 41%;
    height: 68%;
  }

  .recipe-scene__climber {
    top: -36px;
    bottom: auto;
    left: 0;
    width: 68%;
  }

  .recipe-scene__climber--fruit {
    top: 0;
    left: 31%;
    width: auto;
    height: 94%;
  }

  .recipe-scene--malt .recipe-scene__climber {
    top: -5%;
    right: 17%;
    bottom: auto;
    left: auto;
    width: 40%;
  }

  .recipe-scene--malt .recipe-scene__climber--malt-top {
    top: 0;
    right: 34%;
    width: auto;
    height: 94%;
  }

  .recipe-scene__copy,
  .recipe-scene--malt .recipe-scene__copy {
    padding: 0 8px;
  }

  .recipe-scene__copy span {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .recipe-scene__copy h3 {
    font-size: clamp(46px, 13vw, 58px);
  }

  .recipe-scene__copy p {
    margin-top: 16px;
    font-size: 19px;
  }

  .flavors__showcase {
    gap: 34px;
  }

  .flavor,
  .flavor--cherry {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 20px;
    padding: 30px 22px 36px;
    border-width: 4px;
    border-radius: 50px 0 50px 0;
  }

  .flavor--cherry {
    flex-direction: column-reverse;
    border-radius: 0 50px 0 50px;
  }

  .flavor__can {
    width: 100%;
    height: 390px;
  }

  .flavor__copy {
    text-align: center;
  }

  .flavor__copy h3 {
    font-size: clamp(64px, 19vw, 76px);
    line-height: 1;
  }

  .flavor__copy p {
    font-size: 21px;
  }

  .footer {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 80px 24px 50px;
    text-align: center;
  }

  .footer p {
    font-size: 18px;
  }

  .footer a {
    font-size: 18px;
  }

  .footer a[href^="mailto"] {
    overflow-wrap: anywhere;
  }

  .footer__logo {
    width: 190px;
  }

  .order {
    display: flex;
    min-height: 900px;
    flex-direction: column;
    gap: 18px;
    padding: 95px 24px;
    text-align: center;
  }

  .order__visual {
    width: 100%;
    height: 410px;
  }

  .order__copy h2 {
    font-size: clamp(36px, 10.2vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .order__copy h2 span {
    white-space: normal;
  }

  .order__copy > p:not(.eyebrow) {
    font-size: 21px;
  }

  .retailers {
    width: 100%;
    max-width: 360px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 auto;
  }

  .retailer-card {
    min-height: 124px;
    padding: 16px 10px 14px;
    border-width: 2px;
    border-radius: 24px 24px 0 24px;
  }

  .retailer-card img {
    width: 58px;
    height: 58px;
  }

}

@media (min-width: 701px) and (max-width: 1100px) {
  .flavor__copy h3 {
    font-size: clamp(68px, 9vw, 96px);
  }
}

@media (max-width: 700px) and (max-height: 740px) {
  .hero {
    gap: 8px;
    height: calc(100svh - var(--hero-marquee-height));
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 6px;
  }

  .hero__logo {
    width: 168px;
    margin-bottom: 8px;
  }

  .hero__illustration {
    --parallax-base-y: -12px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    margin: 5px 0 10px;
    font-size: 15px;
  }

  .hero__illustration img {
    width: min(100%, 280px);
    max-height: calc(100svh - 430px);
  }

  .button {
    min-height: 48px;
    padding: 11px 22px;
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 28px;
  }

  .order {
    padding-right: 18px;
    padding-left: 18px;
  }

  .order__copy h2 {
    font-size: clamp(32px, 10.5vw, 38px);
  }

  .retailer-card {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (min-width: 701px) and (max-height: 820px) {
  .hero {
    height: calc(100svh - var(--hero-marquee-height));
    min-height: 0;
    padding-top: 76px;
    padding-bottom: 10px;
  }

  .hero__illustration {
    --parallax-base-y: -44px;
  }

  .hero__illustration img {
    width: min(100%, 620px);
    max-height: calc(100svh - 210px);
  }

  .hero__logo {
    width: min(100%, 390px);
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(36px, 4vw, 56px);
  }

  .hero p {
    margin: 10px 0 20px;
    font-size: clamp(19px, 1.7vw, 25px);
  }
}

@media (max-width: 700px) and (max-height: 500px) and (orientation: landscape) {
  .hero {
    display: block;
    height: auto;
    min-height: 100svh;
    padding: 82px 24px 20px;
  }

  .hero__logo,
  .hero__illustration {
    display: none;
  }

  .hero__content {
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(24px, 5vw, 30px);
    line-height: 1;
  }

  .hero p {
    margin: 7px 0 9px;
    font-size: 15px;
  }

  .hero .legal-note {
    margin: 0 0 10px;
    font-size: 13px;
  }

  .hero .button {
    min-height: 44px;
    padding: 9px 20px;
    font-size: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .brand-marquee__track {
    animation: none;
  }

  .character-decor {
    animation: none;
  }

  .ingredient-decor {
    animation: none;
  }
}
