:root {
  --ink: #13372d;
  --muted: #53665d;
  --leaf: #04784a;
  --leaf-dark: #082f22;
  --leaf-deep: #021711;
  --cream: #fbf4e4;
  --ghee: #f5ba32;
  --ghee-light: #ffe69a;
  --butter: #fff0a8;
  --warm: #fffdf8;
  --line: #dce8e0;
  --gold: #8c6508;
  --rose: #9b4b31;
  --shadow: 0 18px 52px rgba(10, 46, 33, 0.12);
  --radius: 8px;
  --display: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --body: "Avenir Next", Avenir, "Gill Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 186, 50, 0.13), transparent 28rem),
    radial-gradient(circle at 88% 32%, rgba(4, 120, 74, 0.12), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, #f9f5ea 42%, #fffdf8 100%);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f7d878;
  background: #041a13;
  pointer-events: none;
  animation: introExit 1100ms 620ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.page-intro__mark {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  animation: introMark 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-intro__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(64vw, 44rem);
  height: 1px;
  background: rgba(247, 216, 120, 0.58);
  transform: translate(-50%, -50%) scaleX(0);
  transform-origin: 50% 50%;
  animation: introLine 780ms 100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #f2c451;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: 0 50%;
  will-change: transform;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #8c6508;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: #fff;
  background: var(--leaf-dark);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(18, 57, 45, 0.1);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(255, 253, 247, 0.97);
  box-shadow: 0 12px 30px rgba(3, 36, 25, 0.09);
}

.brand {
  display: grid;
  gap: 2px;
  min-height: 44px;
  text-decoration: none;
}

.brand__name {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.7vw, 1.7rem);
  font-weight: 800;
}

.brand__tagline,
.eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  font-weight: 800;
}

.top-nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--leaf);
}

.hero {
  position: relative;
  min-height: calc(92svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(34px, 4.8vw, 72px) clamp(18px, 5vw, 80px);
  overflow: hidden;
  color: #fffdf7;
  background: #061f17;
}

.cinematic-stage {
  isolation: isolate;
}

.motion-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.motion-backdrop__grain {
  position: absolute;
  inset: -12%;
  opacity: 0.08;
  background-image:
    linear-gradient(115deg, rgba(19, 55, 45, 0.35) 1px, transparent 1px),
    linear-gradient(25deg, rgba(185, 134, 23, 0.28) 1px, transparent 1px);
  background-size: 42px 42px, 58px 58px;
  mask-image: radial-gradient(circle at 52% 44%, #000, transparent 72%);
}

.motion-backdrop__glow {
  display: none;
}

.motion-backdrop__glow--gold {
  right: 4%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 218, 98, 0.62), transparent 64%);
}

.motion-backdrop__glow--leaf {
  right: -10%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(4, 120, 74, 0.44), transparent 66%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 740px;
}

.hero .eyebrow,
.product-flight .eyebrow,
.story-band .eyebrow {
  color: #f5cf6c;
}

.hero .eyebrow {
  font-size: 0.68rem;
}

.hero h1 {
  margin: 14px 0 20px;
  font-family: var(--display);
  font-size: clamp(2.35rem, 3.45vw, 3.9rem);
  line-height: 1.03;
  max-width: 980px;
}

.hero__lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.55;
  max-width: 700px;
  font-weight: 650;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero .button--primary {
  color: #24140b;
  background: #f5cf6c;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero .button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(12px);
}

.button {
  min-height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }
}

.button:active {
  transform: scale(0.97);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #078250, #035f3c);
  box-shadow: 0 16px 34px rgba(6, 122, 75, 0.24);
}

.button--secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button--light {
  color: var(--leaf-deep);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.hero__visual {
  position: relative;
  min-height: min(62vw, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at var(--hero-light-x, 52%) var(--hero-light-y, 38%), rgba(242, 196, 81, 0.16), transparent 34%),
    #08271d;
  perspective: 1100px;
  transition: background-position 180ms ease;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(245, 207, 108, 0.2);
  border-radius: 50%;
  transform: rotateX(68deg);
  pointer-events: none;
}

.hero__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: min(28vw, 15rem);
  height: min(52vw, 32rem);
  border-radius: 50%;
  background: linear-gradient(100deg, transparent 32%, rgba(255, 255, 255, 0.58) 49%, transparent 66%);
  filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-8rem, 0, 0) rotate(8deg);
  animation: heroGleam 1400ms 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__scene {
  display: none;
}

.hero__lightline {
  position: absolute;
  inset: 13% 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 207, 108, 0.72), transparent);
  transform: rotate(-8deg);
}

.hero__scene::before,
.hero__scene::after {
  content: "";
  position: absolute;
  inset: 8% 3% auto;
  height: 24%;
  border-radius: 999px 999px 38% 38%;
  background:
    radial-gradient(circle at 18% 54%, rgba(255, 255, 255, 0.86) 0 3%, transparent 4%),
    linear-gradient(90deg, rgba(255, 235, 142, 0.04), rgba(245, 186, 50, 0.74), rgba(255, 245, 184, 0.3));
  opacity: 0.88;
  transform: rotate(-9deg);
  filter: blur(0.2px);
}

.hero__scene::after {
  inset: auto 8% 5% 5%;
  height: 19%;
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.72) 0 4%, transparent 5%),
    linear-gradient(90deg, rgba(255, 245, 178, 0.56), rgba(255, 224, 112, 0.62), rgba(10, 91, 57, 0.12));
  transform: rotate(11deg);
}

.hero__ring {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(185, 134, 23, 0.32);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.hero__ring--two {
  inset: 24%;
  border-color: rgba(4, 120, 74, 0.22);
  transform: rotateX(68deg) rotateZ(18deg);
}

.liquid-splash,
.liquid-stream {
  position: absolute;
  display: block;
  pointer-events: none;
}

.liquid-splash {
  border-radius: 56% 44% 58% 42% / 45% 58% 42% 55%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.82) 0 8%, transparent 9%),
    radial-gradient(circle at 62% 58%, rgba(255, 255, 255, 0.5) 0 5%, transparent 6%),
    linear-gradient(135deg, var(--ghee-light), var(--ghee));
  box-shadow: 0 22px 42px rgba(185, 134, 23, 0.18);
  animation: liquidFloat 5.8s ease-in-out 2 alternate both;
}

.liquid-splash--one {
  width: 9.5rem;
  height: 6rem;
  left: 3%;
  top: 20%;
  transform: rotate(-16deg);
}

.liquid-splash--two {
  width: 7rem;
  height: 4.5rem;
  right: 9%;
  bottom: 21%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.86) 0 8%, transparent 9%),
    linear-gradient(135deg, #fff7cb, var(--butter));
  animation-delay: -2.4s;
}

.liquid-stream {
  width: 46%;
  height: 1rem;
  border-radius: 999px;
  opacity: 0.82;
  filter: blur(0.3px);
}

.liquid-stream--ghee {
  left: 6%;
  bottom: 34%;
  background: linear-gradient(90deg, transparent, rgba(245, 186, 50, 0.72), transparent);
  transform: rotate(-13deg);
}

.liquid-stream--butter {
  right: 2%;
  top: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 168, 0.86), transparent);
  transform: rotate(18deg);
}

.hero__product {
  position: relative;
  z-index: 3;
  width: min(41vw, 440px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 55px rgba(40, 42, 20, 0.24));
  transform-origin: 50% 58%;
  will-change: transform;
  animation: productEntrance 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 14px;
  margin: 30px 0 0;
}

.hero__proof div {
  min-width: 112px;
  padding: 14px 16px;
  background: rgba(1, 20, 14, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero__proof dt {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 900;
}

.hero__proof dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  font-size: 0.82rem;
}

.button--gold {
  color: #251708;
  background: #f2c451;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.motion-theatre {
  position: relative;
  min-height: 250vh;
  background: var(--cream);
}

.motion-theatre__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background: var(--cream);
}

.motion-theatre__copy {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  padding: clamp(54px, 7vw, 108px) clamp(24px, 5vw, 84px);
  background: #fbf4e4;
  border-right: 1px solid rgba(19, 55, 45, 0.12);
}

.motion-theatre__scenes {
  position: relative;
  min-height: 36rem;
  margin-top: 16px;
}

.motion-theatre__scene-copy {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  pointer-events: none;
  transition: opacity 180ms ease-out, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.motion-theatre__scene-copy.is-active {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.motion-theatre__number {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--gold);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.motion-theatre h2 {
  margin: 10px 0 18px;
  max-width: 11ch;
  font-family: var(--display);
  font-size: clamp(2.35rem, 3.8vw, 4.25rem);
  line-height: 1;
}

.motion-theatre__scene-copy p {
  max-width: 36rem;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 650;
  line-height: 1.6;
}

.motion-theatre__progress {
  display: flex;
  gap: 8px;
  align-self: end;
}

.motion-theatre__progress span {
  width: 44px;
  height: 4px;
  background: rgba(19, 55, 45, 0.18);
  transform-origin: left center;
  transition: background 180ms ease, transform 180ms ease;
}

.motion-theatre__progress span.is-active {
  background: var(--leaf);
  transform: scaleX(1.28);
}

.motion-theatre__media {
  position: relative;
  min-width: 0;
  min-height: 100svh;
  overflow: hidden;
  background: var(--leaf-deep);
  isolation: isolate;
}

.motion-theatre__plate {
  position: absolute;
  inset: -4%;
  z-index: 0;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  transform: translate3d(-2%, 0, 0) scale(1.06);
  will-change: transform;
}

.motion-theatre__ingredient-splash {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -7%;
  width: 116%;
  max-width: none;
  height: auto;
  opacity: 0.58;
  pointer-events: none;
  transform: translate3d(-50%, 4%, 0) rotate(-3deg) scale(1.08);
  transform-origin: 50% 78%;
  filter: saturate(0.92) drop-shadow(0 32px 40px rgba(0, 0, 0, 0.24));
  will-change: transform, opacity;
}

.motion-theatre__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 23, 17, 0.42), transparent 24%),
    linear-gradient(180deg, transparent 60%, rgba(2, 23, 17, 0.36));
  pointer-events: none;
}

.motion-theatre__sweep {
  position: absolute;
  z-index: 4;
  left: 42%;
  top: -14%;
  width: 18%;
  height: 128%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  filter: blur(20px);
  transform: translate3d(-260%, 0, 0) rotate(8deg);
  will-change: transform, opacity;
  pointer-events: none;
}

.motion-theatre__product {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(48vw, 36rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 48px 58px rgba(0, 0, 0, 0.34));
  transform-origin: 50% 62%;
  will-change: transform, opacity;
}

.motion-theatre__product--ghee {
  transform: translate3d(-48%, -45%, 0) rotate(-5deg) scale(0.94);
}

.motion-theatre__product--butter {
  width: min(37vw, 29rem);
  opacity: 0;
  transform: translate3d(8%, -20%, 0) rotate(11deg) scale(0.82);
}

.motion-theatre__floor {
  position: absolute;
  z-index: 2;
  left: 25%;
  right: 20%;
  bottom: 10%;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  filter: blur(24px);
  transform: scaleX(0.92);
  will-change: transform, opacity;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-flight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 80px);
  overflow: hidden;
  color: #f9f7ef;
  background:
    radial-gradient(circle at 75% 28%, rgba(245, 186, 50, 0.22), transparent 26rem),
    radial-gradient(circle at 22% 72%, rgba(4, 120, 74, 0.48), transparent 24rem),
    linear-gradient(135deg, #061f17 0%, #0c392a 52%, #021711 100%);
}

.product-flight::before {
  content: "";
  position: absolute;
  inset: auto -8% -30% -8%;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(245, 186, 50, 0.26), transparent 66%);
  pointer-events: none;
}

.product-flight__copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.product-flight h2 {
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.2vw, 4.5rem);
  line-height: 0.96;
}

.product-flight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.58;
}

.product-flight__rail {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.ingredient-flow {
  position: absolute;
  inset: 5% -5%;
  z-index: -1;
  pointer-events: none;
}

.ingredient-flow__ribbon,
.ingredient-flow__drop {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

.ingredient-flow__ribbon {
  width: 64%;
  height: 34%;
  border: clamp(0.85rem, 1.8vw, 1.5rem) solid transparent;
  border-radius: 50%;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
  opacity: 0.84;
  transform-origin: center;
}

.ingredient-flow__ribbon--ghee {
  left: -6%;
  top: 20%;
  border-top-color: rgba(245, 186, 50, 0.92);
  border-right-color: rgba(255, 230, 154, 0.48);
  transform: rotate(-14deg);
}

.ingredient-flow__ribbon--butter {
  right: -4%;
  bottom: 8%;
  width: 58%;
  height: 30%;
  border-right-color: rgba(255, 247, 203, 0.44);
  border-bottom-color: rgba(255, 240, 168, 0.88);
  transform: rotate(12deg) scaleX(0.92);
}

.ingredient-flow__drop {
  width: 1.15rem;
  height: 1.65rem;
  border-radius: 64% 36% 68% 32% / 72% 54% 46% 28%;
  background: #f5ba32;
  box-shadow: inset 0.2rem 0.15rem 0 rgba(255, 255, 255, 0.44);
  opacity: 0.82;
}

.ingredient-flow__drop--one {
  left: 8%;
  top: 18%;
  transform: rotate(34deg) scale(0.8);
}

.ingredient-flow__drop--two {
  right: 24%;
  top: 15%;
  transform: rotate(-22deg) scale(1.15);
}

.ingredient-flow__drop--three {
  right: 8%;
  bottom: 19%;
  background: #fff0a8;
  transform: rotate(48deg) scale(0.72);
}

.flight-card {
  --depth-x: 0px;
  --depth-y: 0px;
  --depth-r: 0deg;
  position: absolute;
  width: clamp(13rem, 24vw, 20rem);
  display: grid;
  gap: 12px;
  justify-items: center;
  color: #fff;
  text-decoration: none;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.flight-card::before {
  content: "";
  position: absolute;
  inset: 22% 2% 10%;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px 999px 28px 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.2);
}

.flight-card span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.flight-card img {
  width: min(82%, 17rem);
  height: 18rem;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.28));
  transform: translate3d(var(--depth-x), var(--depth-y), 0) rotate(var(--depth-r)) scale(1);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease;
  will-change: transform;
}

.flight-card.has-pointer-depth img {
  filter: drop-shadow(0 42px 46px rgba(0, 0, 0, 0.34));
  transform: translate3d(var(--depth-x), var(--depth-y), 0) rotate(var(--depth-r)) scale(1.035);
}

.flight-card--ghee {
  left: 2%;
  top: 18%;
  transform: rotate(-8deg) translateZ(80px);
}

.flight-card--butter {
  right: 36%;
  bottom: 5%;
  transform: rotate(7deg) translateZ(110px);
}

.flight-card--wine {
  right: 0;
  top: 10%;
  transform: rotate(9deg) translateZ(40px);
}

.flight-card--wine::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  z-index: -1;
  width: 48%;
  height: 9%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(14px);
  transform: translateX(-50%);
}

.flight-card--wine img {
  width: auto;
  max-width: 58%;
  height: 22rem;
}

.reveal-stack {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.trust-strip div {
  display: grid;
  gap: 6px;
  padding: 24px clamp(18px, 4vw, 42px);
  background: #fff;
}

.trust-strip strong {
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 80px);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section__heading h2,
.story-band h2 {
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.25vw, 3.5rem);
  line-height: 1.04;
}

.section__heading p,
.story-band p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.product-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 590px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: opacity 520ms ease-out, transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 180ms ease, border-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(4, 120, 74, 0.28);
    box-shadow: 0 26px 64px rgba(10, 46, 33, 0.15);
  }
}

.product-card__media {
  --depth-x: 0px;
  --depth-y: 0px;
  --depth-r: 0deg;
  --spot-x: 50%;
  --spot-y: 42%;
  position: relative;
  display: grid;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #fffdfa, #f7fbf8);
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 230, 154, 0.54), transparent 38%);
  mix-blend-mode: multiply;
  transition: opacity 220ms ease;
}

.product-card__media.has-pointer-depth::after {
  opacity: 0.62;
}

.product-card__media img {
  position: relative;
  z-index: 1;
  width: min(84%, 260px);
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 26px 32px rgba(18, 57, 45, 0.15));
  transform: translate3d(var(--depth-x), var(--depth-y), 0) rotate(var(--depth-r)) scale(1);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), filter 260ms ease;
  will-change: transform;
}

.product-card__media.has-pointer-depth img {
  filter: drop-shadow(0 34px 38px rgba(18, 57, 45, 0.2));
  transform: translate3d(var(--depth-x), var(--depth-y), 0) rotate(var(--depth-r)) scale(1.04);
}

.product-card--wine .product-card__media {
  background:
    radial-gradient(circle at 50% 40%, rgba(245, 207, 108, 0.22), transparent 34%),
    linear-gradient(155deg, #fffdf8, #f2f7f3);
}

.product-card--wine .product-card__media::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13%;
  z-index: 0;
  width: 34%;
  height: 9%;
  border-radius: 50%;
  background: rgba(6, 31, 23, 0.18);
  filter: blur(12px);
  transform: translateX(-50%);
}

.product-card--wine .product-card__media img {
  width: auto;
  max-width: 52%;
  height: 250px;
}

.product-card__body {
  display: grid;
  grid-template-rows: minmax(72px, auto) auto 1fr auto;
  gap: 16px;
  padding: 26px;
  border-top: 1px solid var(--line);
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.45vw, 1.45rem);
  line-height: 1.12;
}

.product-card__price {
  margin: 0;
  color: var(--rose);
  font-size: 1.3rem;
  font-weight: 900;
}

.product-card__summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
  font-weight: 650;
}

.product-card__cta {
  align-self: end;
  width: 100%;
  min-height: 54px;
}

.loading,
.notice {
  grid-column: 1 / -1;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-band {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 80px);
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(185, 134, 23, 0.18), transparent 32%),
    linear-gradient(135deg, #082f22, #031b14);
}

.story-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  max-width: 1480px;
}

.story-band p {
  color: rgba(255, 255, 255, 0.82);
}

.story-band__copy {
  max-width: 820px;
}

.story-band__copy .button {
  margin-top: 16px;
}

.story-band__details {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.story-band__details div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.story-band__details dt {
  color: #f5cf6c;
  font-weight: 900;
}

.story-band__details dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.reviews-section {
  background: #fffdf8;
}

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

.review-grid figure {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 290px;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.45vw, 1.4rem);
  line-height: 1.28;
}

.review-grid figcaption {
  color: var(--muted);
  font-weight: 900;
}

.tool-section {
  background: linear-gradient(180deg, #fffdf7 0%, #f4f8f1 100%);
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1120px;
}

.calculator__controls,
.calculator__result {
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calculator__controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.calculator label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.calculator input,
.calculator select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 800;
}

.calculator__result {
  display: grid;
  align-content: center;
  gap: 14px;
  background: var(--leaf-dark);
  color: #fff;
}

.calculator__label {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.calculator__result strong {
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.5vw, 3.8rem);
  line-height: 0.95;
}

.calculator__result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.5;
}

.delivery-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 80px);
  color: #fff;
  background: #0d3b2d;
}

.delivery-band .eyebrow {
  color: #f5cf6c;
}

.delivery-band h2 {
  margin: 8px 0 16px;
  max-width: 700px;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3.5vw, 3.75rem);
  line-height: 1.02;
}

.delivery-band p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
}

.delivery-band__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 22px;
  align-content: center;
}

.delivery-band__cities a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-weight: 900;
  text-decoration-color: rgba(245, 207, 108, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.delivery-band__cities a::after {
  content: "";
  width: 4px;
  height: 4px;
  margin-left: 22px;
  border-radius: 50%;
  background: #f5cf6c;
}

.delivery-band__cities a:last-child::after {
  display: none;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 80px);
  color: #fff;
  background: #762f43;
}

.contact-band .eyebrow {
  color: #f5cf6c;
}

.contact-band h2 {
  margin: 8px 0 14px;
  max-width: 760px;
  font-family: var(--display);
  font-size: clamp(2.15rem, 3.5vw, 3.75rem);
  line-height: 1.02;
}

.contact-band p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.6;
}

.contact-band__actions {
  display: grid;
  gap: 12px;
}

.contact-band__primary {
  color: #24140b;
  background: #f5cf6c;
  box-shadow: 0 16px 34px rgba(26, 9, 14, 0.2);
}

.contact-band__secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: transparent;
}

.contact-band__email {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}

.contact-band address {
  display: grid;
  gap: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  line-height: 1.7;
}

.contact-band address a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(520px, 1.55fr) minmax(220px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(36px, 5vw, 64px) clamp(18px, 5vw, 80px);
  color: rgba(255, 255, 255, 0.82);
  background: #061f17;
}

.site-footer__brand {
  display: grid;
  gap: 8px;
  max-width: 520px;
}

.site-footer__brand strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.45rem;
}

.site-footer__brand span {
  line-height: 1.6;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 4px 18px;
}

.site-footer address {
  margin: 0;
  font-style: normal;
  line-height: 1.6;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
}

.journey-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  min-height: 760px;
  overflow: hidden;
  color: #fffdf7;
  background: #061f17;
  border-top: 1px solid rgba(245, 207, 108, 0.26);
  border-bottom: 1px solid rgba(245, 207, 108, 0.18);
}

.journey-teaser__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.journey-teaser__cow {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
  filter: saturate(0.82) contrast(1.06) brightness(0.72);
  transform: scale(1.04);
  transition: transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), filter 600ms ease;
}

.journey-teaser__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 23, 17, 0.04), rgba(2, 23, 17, 0.18) 58%, #061f17 100%);
}

.journey-teaser__orbit {
  position: absolute;
  left: 18%;
  bottom: 8%;
  width: min(32vw, 31rem);
  aspect-ratio: 1.9;
  border: 1px solid rgba(245, 207, 108, 0.52);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.journey-teaser__jar {
  position: absolute;
  z-index: 2;
  right: 3%;
  bottom: -4%;
  width: min(30vw, 25rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.42));
  transform: translate3d(var(--journey-x, 0), var(--journey-y, 0), 0) rotate(var(--journey-r, 0deg));
  will-change: transform;
}

.journey-teaser__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: clamp(56px, 8vw, 118px) clamp(24px, 6vw, 96px) clamp(56px, 8vw, 118px) clamp(28px, 4vw, 72px);
}

.journey-teaser .eyebrow {
  color: #ffe69a;
}

.journey-teaser h2 {
  max-width: 10ch;
  margin: 14px 0 24px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.journey-teaser__copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.7;
}

.journey-teaser__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.journey-teaser__steps li {
  display: grid;
  gap: 5px;
  padding: 16px 8px 16px 0;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.journey-teaser__steps span {
  color: #f2c451;
  font-family: var(--display);
  font-size: 1.15rem;
}

@media (hover: hover) and (pointer: fine) {
  .journey-teaser:hover .journey-teaser__cow {
    filter: saturate(0.9) contrast(1.08) brightness(0.76);
    transform: scale(1.075);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .motion-theatre {
    min-height: auto;
  }

  .motion-theatre__sticky {
    position: relative;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .motion-theatre__media {
    min-height: 620px;
  }

  .motion-theatre__copy {
    order: 2;
    border-top: 1px solid rgba(19, 55, 45, 0.12);
    border-right: 0;
  }

  .motion-theatre__scenes {
    min-height: auto;
    display: grid;
    gap: 42px;
  }

  .motion-theatre__scene-copy {
    position: relative;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .motion-theatre__progress {
    display: none;
  }

  .motion-theatre__product--ghee {
    left: 36%;
    width: min(58vw, 30rem);
    transform: translate3d(-50%, -44%, 0) rotate(-6deg) scale(0.9) !important;
    opacity: 1 !important;
  }

  .motion-theatre__product--butter {
    left: 70%;
    width: min(54vw, 28rem);
    transform: translate3d(-50%, -34%, 0) rotate(7deg) scale(0.92) !important;
    opacity: 1 !important;
  }

  .product-flight {
    grid-template-columns: 1fr;
  }

  .product-flight__rail {
    min-height: 500px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .motion-theatre__ingredient-splash {
    width: 112%;
    bottom: -4%;
    opacity: 0.62 !important;
    transform: translate3d(-50%, 0, 0) rotate(-2deg) scale(1.05) !important;
  }

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

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

  .calculator,
  .calculator__controls {
    grid-template-columns: 1fr;
  }

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

  .story-band__inner,
  .delivery-band,
  .contact-band,
  .site-footer,
  .journey-teaser {
    grid-template-columns: 1fr;
  }

  .journey-teaser__visual {
    min-height: 620px;
  }

  .journey-teaser__copy {
    padding: 64px clamp(24px, 7vw, 72px) 76px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px 16px;
    overflow-x: visible;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.8rem, 7.6vw, 2.25rem);
    line-height: 1.06;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .journey-teaser,
  .journey-teaser__visual {
    min-height: auto;
  }

  .journey-teaser__visual {
    aspect-ratio: 4 / 5;
  }

  .journey-teaser__cow {
    object-position: 47% 50%;
  }

  .journey-teaser__jar {
    right: -4%;
    bottom: -6%;
    width: min(66vw, 21rem);
  }

  .journey-teaser h2 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .journey-teaser__steps {
    grid-template-columns: 1fr 1fr;
  }

  .hero__proof {
    display: none;
  }

  .hero__visual {
    min-height: 300px;
  }

  .hero__product {
    width: min(70vw, 300px);
  }

  .motion-theatre__media {
    min-height: 420px;
  }

  .motion-theatre__ingredient-splash {
    width: 148%;
    bottom: -2%;
    opacity: 0.52 !important;
  }

  .motion-theatre h2 {
    max-width: 14ch;
    font-size: clamp(2.15rem, 8.8vw, 3.15rem);
  }

  .motion-theatre__copy {
    padding: 46px 20px 58px;
  }

  .motion-theatre__product--ghee {
    left: 34%;
    width: min(62vw, 17rem);
  }

  .motion-theatre__product--butter {
    left: 73%;
    width: min(57vw, 16rem);
  }

  .liquid-splash--one {
    width: 6rem;
    height: 4rem;
  }

  .liquid-splash--two,
  .liquid-stream,
  .ingredient-flow {
    display: none;
  }

  .product-flight__rail {
    min-height: auto;
    display: grid;
    gap: 18px;
    place-items: stretch;
  }

  .flight-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 260px;
    transform: none !important;
  }

  .flight-card img {
    height: 210px;
  }

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

  .product-card {
    min-height: auto;
    grid-template-rows: 260px 1fr;
  }

  .product-card__body {
    padding: 22px;
  }

  .story-band__details div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-band__actions .button,
  .contact-band__email {
    width: 100%;
  }

  .site-footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .delivery-band__cities {
    gap: 2px 16px;
  }

  .delivery-band__cities a::after {
    margin-left: 16px;
  }
}

@media (max-width: 340px) {
  .site-header {
    gap: 8px;
    padding-inline: 16px;
  }

  .top-nav {
    gap: 2px 14px;
  }

  .hero {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: 7.9vw;
  }
}

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

  .hero__product,
  .hero__visual::after,
  .liquid-splash,
  .ingredient-flow__ribbon,
  .ingredient-flow__drop {
    animation: none !important;
  }

  .page-intro {
    display: none;
  }

  .journey-teaser__cow,
  .journey-teaser__jar {
    transform: none !important;
  }

  .motion-theatre {
    min-height: auto;
  }

  .motion-theatre__sticky {
    position: relative;
    min-height: auto;
  }

  .motion-theatre__scenes {
    min-height: auto;
    display: grid;
    gap: 42px;
  }

  .motion-theatre__scene-copy {
    position: relative;
    visibility: visible;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .motion-theatre__sweep {
    display: none;
  }

  .motion-theatre__ingredient-splash {
    opacity: 0.58 !important;
    transform: translate3d(-50%, 0, 0) rotate(-2deg) scale(1.06) !important;
  }

  .motion-theatre__product--ghee {
    left: 36%;
    transform: translate3d(-50%, -44%, 0) rotate(-6deg) scale(0.9) !important;
    opacity: 1 !important;
  }

  .motion-theatre__product--butter {
    left: 70%;
    transform: translate3d(-50%, -34%, 0) rotate(7deg) scale(0.92) !important;
    opacity: 1 !important;
  }

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

@keyframes introMark {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.82);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes introLine {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1);
  }
}

@keyframes introExit {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes productEntrance {
  from {
    opacity: 0;
    transform: translate3d(42px, 24px, 0) rotate(-7deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes heroGleam {
  0% {
    opacity: 0;
    transform: translate3d(-8rem, 0, 0) rotate(8deg);
  }
  35% {
    opacity: 0.44;
  }
  100% {
    opacity: 0;
    transform: translate3d(9rem, -1rem, 0) rotate(8deg);
  }
}

@keyframes liquidFloat {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }
  45% {
    translate: 10px -14px;
    scale: 1.05 0.96;
  }
}
