* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Glacial Indifference";
  font-style: normal;
  font-weight: 400;
  src:
    local("Glacial Indifference"),
    url("../fonts/GlacialIndifference-Regular.woff") format("woff"),
    url("https://fonts.cdnfonts.com/s/19355/GlacialIndifference-Regular.woff") format("woff");
}

@font-face {
  font-family: "Glacial Indifference";
  font-style: normal;
  font-weight: 700;
  src:
    local("Glacial Indifference"),
    url("../fonts/GlacialIndifference-Bold.woff") format("woff"),
    url("https://fonts.cdnfonts.com/s/19355/GlacialIndifference-Bold.woff") format("woff");
}

:root {
  --font-heading: "Bricolage Grotesque", Arial, Helvetica, sans-serif;
  --font-body: "Glacial Indifference", Arial, Helvetica, sans-serif;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #fffaf4;
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

.sr-only {
  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 {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: #8c1f5b;
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: clamp(12px, 1.45vw, 22px);
  left: 50%;
  z-index: 200;
  width: min(90vw, 1710px);
  transform: translateX(-50%);
  pointer-events: none;
}

.site-header-inner {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: clamp(72px, 5.6vw, 108px);
  padding: 0 clamp(24px, 3.3vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(43, 0, 29, 0.18);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.site-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: clamp(142px, 13.5vw, 238px);
  text-decoration: none;
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1);
}

.site-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-brand:hover {
  transform: translateY(-2px) scale(1.02);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4.4vw, 86px);
}

.site-nav a {
  color: #1e2423;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.15vw, 21px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.site-nav a:hover {
  color: #8c1f5b;
  transform: translateY(-2px);
}

.site-nav a[aria-current="page"],
.footer-link[aria-current="page"] {
  color: #8c1f5b;
}

.site-mobile-order {
  display: none;
  text-decoration: none;
}

.site-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(48px, 3.55vw, 68px);
  padding: 0 clamp(22px, 2.2vw, 42px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 125, 30, 0.22), rgba(255, 125, 30, 0)),
    #8c1f5b;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.16);
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.1vw, 20px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform 240ms cubic-bezier(.2, .8, .2, 1),
    background 240ms ease,
    box-shadow 240ms ease;
}

.site-cta:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(180deg, rgba(255, 213, 132, 0.28), rgba(255, 125, 30, 0)),
    #ff7d1e;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.22),
    0 12px 18px rgba(140, 31, 91, 0.2);
}

.site-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: #8c1f5b;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.18),
    0 10px 18px rgba(140, 31, 91, 0.2);
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(.2, .8, .2, 1),
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-menu-toggle:hover {
  transform: translateY(-2px);
  background: #ff7d1e;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.24),
    0 12px 18px rgba(140, 31, 91, 0.22);
}

.site-menu-toggle-lines {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.site-menu-toggle-lines::before,
.site-menu-toggle-lines::after,
.site-menu-toggle-lines span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 220ms ease,
    opacity 180ms ease,
    top 220ms ease;
}

.site-menu-toggle-lines::before {
  top: 0;
}

.site-menu-toggle-lines span {
  top: 7.5px;
}

.site-menu-toggle-lines::after {
  top: 15px;
}

.site-header.is-open .site-menu-toggle-lines::before {
  top: 7.5px;
  transform: rotate(45deg);
}

.site-header.is-open .site-menu-toggle-lines span {
  opacity: 0;
}

.site-header.is-open .site-menu-toggle-lines::after {
  top: 7.5px;
  transform: rotate(-45deg);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 125, 30, 0.72);
  outline-offset: 4px;
}

main > section,
main > article,
.oatzees-footer {
  scroll-margin-top: clamp(88px, 8vw, 136px);
}

.bizbar-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: #9b075f;
}

.hero-item {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: auto;
  will-change: transform, filter, opacity;
}

.hero-item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  user-select: none;
  pointer-events: none;
  transform-origin: center;
  will-change: transform, filter;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition:
    transform 280ms cubic-bezier(.2, .8, .2, 1),
    filter 260ms ease;
}

.hero-item,
.hero-copy,
.order-button {
  --x: 0px;
  --y: 0px;
  --rotate: 0deg;
  --scale: 1;
  --from-x: 0px;
  --from-y: 28px;
  --from-rotate: 0deg;
  --from-scale: 0.96;
  --hover-x: 0px;
  --hover-y: -8px;
  --hover-rotate: 0deg;
  --hover-scale: 1.04;
  --inner-hover-x: 0px;
  --inner-hover-y: 0px;
  --inner-hover-rotate: 0deg;
  --inner-hover-scale: 1;
  animation: hero-load 780ms cubic-bezier(.2, .8, .2, 1) both;
  transform: translate3d(var(--x), var(--y), 0) rotate(var(--rotate)) scale(var(--scale));
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(.2, .8, .2, 1),
    filter 260ms ease,
    text-shadow 260ms ease;
}

.hero-item:hover,
.hero-copy:hover,
.order-button:hover {
  transform:
    translate3d(
      calc(var(--x) + var(--hover-x)),
      calc(var(--y) + var(--hover-y)),
      0
    )
    rotate(calc(var(--rotate) + var(--hover-rotate)))
    scale(var(--hover-scale));
  z-index: 10;
}

.hero-item:hover img {
  transform:
    translate3d(var(--inner-hover-x), var(--inner-hover-y), 0)
    rotate(var(--inner-hover-rotate))
    scale(var(--inner-hover-scale));
  filter: drop-shadow(0 14px 16px rgba(61, 0, 38, 0.34));
}

.scroll-product {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: min(32vw, 450px);
  pointer-events: auto;
  user-select: none;
  transform-origin: center center;
  will-change: transform, width;
}

.scroll-product > img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 20px rgba(61, 0, 38, 0.24));
  pointer-events: none;
  user-select: none;
}

.scroll-product:hover > img {
  filter: drop-shadow(0 23px 24px rgba(61, 0, 38, 0.3));
}

.ingredient-hotspot {
  position: absolute;
  left: var(--hotspot-x);
  top: var(--hotspot-y);
  z-index: 12;
  display: grid;
  place-items: center;
  width: clamp(24px, 5.4vw, 34px);
  height: clamp(24px, 5.4vw, 34px);
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.58);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(.2, .8, .2, 1);
}

.scroll-product.is-hotspot-active .ingredient-hotspot {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.hotspot-ring {
  position: relative;
  display: block;
  width: 58%;
  height: 58%;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #8c1f5b;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.28),
    0 8px 15px rgba(58, 0, 36, 0.28);
}

.hotspot-ring::before {
  content: "";
  position: absolute;
  inset: -11px;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: inherit;
  animation: hotspotPulse 1.7s ease-out infinite;
}

.hotspot-card {
  position: absolute;
  bottom: calc(100% + 16px);
  z-index: 20;
  display: grid;
  justify-items: center;
  width: clamp(170px, 18vw, 225px);
  padding: 16px 16px 18px;
  border-radius: 10px;
  color: #241a23;
  background: rgba(255, 250, 244, 0.98);
  box-shadow: 0 22px 42px rgba(58, 0, 36, 0.26);
  font-family: var(--font-body);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) rotate(-24deg) scale(0.92);
  transition:
    opacity 200ms ease,
    transform 240ms cubic-bezier(.2, .8, .2, 1);
}

.card-right .hotspot-card {
  left: 18px;
}

.card-left .hotspot-card {
  right: 18px;
}

.hotspot-card::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: inherit;
  transform: rotate(45deg);
}

.card-right .hotspot-card::after {
  left: 18px;
}

.card-left .hotspot-card::after {
  right: 18px;
}

.hotspot-card img {
  display: block;
  width: clamp(74px, 8vw, 104px);
  height: clamp(74px, 8vw, 104px);
  object-fit: contain;
  margin-bottom: 10px;
  pointer-events: none;
  user-select: none;
}

.hotspot-card strong {
  color: #8c1f5b;
  font-family: var(--font-heading);
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 900;
  line-height: 1.05;
}

.hotspot-card span {
  margin-top: 8px;
  color: #4b3b48;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
  line-height: 1.35;
}

.ingredient-hotspot:hover,
.ingredient-hotspot:focus-visible {
  z-index: 30;
}

.ingredient-hotspot:hover .hotspot-ring,
.ingredient-hotspot:focus-visible .hotspot-ring {
  background: #f27922;
  transform: scale(1.12);
}

.ingredient-hotspot:hover .hotspot-card,
.ingredient-hotspot:focus-visible .hotspot-card {
  opacity: 1;
  transform: translateY(0) rotate(-24deg) scale(1);
}

.hotspot-fig-left { --hotspot-x: 19%; --hotspot-y: 36%; }
.hotspot-fig-right { --hotspot-x: 58%; --hotspot-y: 17%; }
.hotspot-almond-left { --hotspot-x: 20%; --hotspot-y: 59%; }
.hotspot-walnut { --hotspot-x: 31%; --hotspot-y: 74%; }
.hotspot-pistachio { --hotspot-x: 69%; --hotspot-y: 50%; }
.hotspot-almond-right { --hotspot-x: 75%; --hotspot-y: 64%; }

.hero-bg:hover {
  z-index: 0;
}

.hero-bg:hover img {
  filter: none;
}

.copy-inner {
  display: block;
  transform-origin: center;
  will-change: transform, text-shadow;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition:
    transform 280ms cubic-bezier(.2, .8, .2, 1),
    text-shadow 260ms ease;
}

.hero-copy:hover .copy-inner {
  transform:
    translate3d(var(--inner-hover-x), var(--inner-hover-y), 0)
    rotate(var(--inner-hover-rotate))
    scale(var(--inner-hover-scale));
  text-shadow: 0 10px 16px rgba(61, 0, 38, 0.3);
}

.button-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 260ms cubic-bezier(.2, .8, .2, 1),
    text-shadow 260ms ease;
}

.order-button:hover .button-inner {
  transform:
    translate3d(var(--inner-hover-x), var(--inner-hover-y), 0)
    scale(var(--inner-hover-scale));
  text-shadow: 0 2px 4px rgba(106, 38, 9, 0.45);
}

@keyframes hero-load {
  0% {
    opacity: 0;
    transform:
      translate3d(
        calc(var(--x) + var(--from-x)),
        calc(var(--y) + var(--from-y)),
        0
      )
      rotate(calc(var(--rotate) + var(--from-rotate)))
      scale(var(--from-scale));
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translate3d(var(--x), var(--y), 0) rotate(var(--rotate)) scale(var(--scale));
    filter: blur(0);
  }
}

@keyframes top-crush-flow {
  0% {
    transform: translate3d(3.2%, -1.2%, 0);
  }

  50% {
    transform: translate3d(-1.8%, 1.2%, 0);
  }

  100% {
    transform: translate3d(-3.2%, -0.6%, 0);
  }
}

@keyframes hotspotPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.72);
  }

  70% {
    opacity: 0;
    transform: scale(1.22);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.hero-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  --from-scale: 1.08;
  --hover-y: 0px;
  --hover-scale: 1.015;
  --inner-hover-scale: 1.006;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-crush {
  top: -30.0%;
  left: -4.4%;
  width: 108.8%;
  z-index: 4;
  --from-y: -42px;
  --from-scale: 0.98;
  --hover-y: 4px;
  --hover-scale: 1.012;
  --inner-hover-y: 3px;
  --inner-hover-scale: 1.006;
}

.top-crush-track {
  display: block;
  width: 100%;
  animation: top-crush-flow 9s ease-in-out 1200ms infinite alternate;
  will-change: transform;
}

.brand-logo {
  top: 17.7%;
  left: 28.9%;
  width: 45.2%;
  z-index: 2;
  --from-y: -24px;
  --from-scale: 0.92;
  --hover-y: -4px;
  --hover-scale: 1.025;
  --inner-hover-scale: 1.01;
}

.left-nuts {
  top: 41.2%;
  left: 28.1%;
  width: 17.6%;
  z-index: 3;
  --from-x: -34px;
  --from-rotate: -10deg;
  --hover-x: -7px;
  --hover-rotate: -5deg;
  --inner-hover-x: -3px;
  --inner-hover-y: -2px;
  --inner-hover-rotate: -3deg;
  --inner-hover-scale: 1.025;
}

.right-nuts {
  top: 25.1%;
  left: 47.4%;
  width: 16.0%;
  z-index: 3;
  --from-x: 28px;
  --from-rotate: 10deg;
  --hover-x: 7px;
  --hover-rotate: 5deg;
  --inner-hover-x: 3px;
  --inner-hover-y: -2px;
  --inner-hover-rotate: 3deg;
  --inner-hover-scale: 1.025;
}

.bar {
  top: 25.8%;
  left: 32.6%;
  width: 40.5%;
  z-index: 5;
  --from-y: 48px;
  --from-rotate: -8deg;
  --from-scale: 0.88;
  --hover-y: -10px;
  --hover-rotate: 2deg;
  --hover-scale: 1.035;
  --inner-hover-y: -4px;
  --inner-hover-rotate: 1deg;
  --inner-hover-scale: 1.018;
}

.soft-label {
  top: 54.1%;
  left: 58.3%;
  width: 10.4%;
  z-index: 6;
  --from-x: 22px;
  --from-scale: 0.72;
  --from-rotate: 10deg;
  --hover-y: -5px;
  --hover-rotate: -7deg;
  --hover-scale: 1.08;
  --inner-hover-y: -3px;
  --inner-hover-rotate: -3deg;
  --inner-hover-scale: 1.05;
}

.bottom-nuts {
  top: 90.3%;
  left: 43.1%;
  width: 11.8%;
  z-index: 6;
  --from-y: 44px;
  --from-rotate: 8deg;
  --hover-y: -6px;
  --hover-rotate: 4deg;
  --inner-hover-y: -2px;
  --inner-hover-rotate: 2deg;
  --inner-hover-scale: 1.02;
}

.bottom-nuts-extra {
  top: 91.4%;
  left: 47.7%;
  width: 8.8%;
  z-index: 6;
  --rotate: -8deg;
  --from-y: 38px;
  --from-rotate: 8deg;
  --hover-y: -5px;
  --hover-rotate: -3deg;
  --inner-hover-y: -2px;
  --inner-hover-rotate: -2deg;
  --inner-hover-scale: 1.02;
}

.hero-copy {
  position: absolute;
  top: 58.5%;
  left: 69.8%;
  z-index: 7;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.55vw, 48px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: lowercase;
  cursor: default;
  --from-x: 38px;
  --from-y: 0px;
  --from-scale: 0.94;
  --hover-y: -4px;
  --hover-scale: 1.02;
  --inner-hover-y: -2px;
  --inner-hover-scale: 1.01;
}

.order-button {
  position: absolute;
  top: 74.4%;
  left: 73.5%;
  width: 15.6%;
  min-height: clamp(42px, 4.1vw, 58px);
  z-index: 7;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  cursor: pointer;
  font: 700 clamp(16px, 1.6vw, 24px) / 1 var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  overflow: hidden;
  background: #f27922;
  box-shadow: 0 12px 20px rgba(76, 0, 48, 0.18);
  text-shadow: none;
  user-select: none;
  will-change: transform, filter, opacity;
  --from-y: 34px;
  --from-scale: 0.88;
  --hover-y: -5px;
  --hover-scale: 1.07;
  --inner-hover-y: -1px;
  --inner-hover-scale: 1.025;
}

.order-button::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 50%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.order-button:hover {
  filter: drop-shadow(0 12px 16px rgba(61, 0, 38, 0.34));
  background: #8c1f5b;
}

.order-button:active {
  transform:
    translate3d(
      calc(var(--x) + var(--hover-x)),
      calc(var(--y) + var(--hover-y) + 2px),
      0
    )
    rotate(calc(var(--rotate) + var(--hover-rotate)))
    scale(1.04);
  box-shadow:
    0 6px 14px rgba(65, 0, 42, 0.18);
}

.order-button:focus-visible {
  outline: 3px solid rgba(255, 225, 128, 0.95);
  outline-offset: 4px;
}

.ingredients-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: #f57a20;
}

.ingredients-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.ingredients-title {
  position: absolute;
  top: 8.4%;
  left: 50%;
  z-index: 5;
  margin: 0;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.75vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  will-change: transform, opacity;
}

.reveal-pop {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.86);
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(.2, .9, .2, 1.18);
  transition-delay: var(--pop-delay, 0ms);
  will-change: transform, opacity;
}

.ingredients-section.is-visible .reveal-pop {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.ingredients-title.reveal-pop {
  transform: translate3d(-50%, 28px, 0) scale(0.86);
}

.ingredients-section.is-visible .ingredients-title.reveal-pop {
  transform: translate3d(-50%, 0, 0) scale(1);
}

.ingredients-section.is-visible .ingredients-title.reveal-pop,
.ingredients-section.is-visible .s2-move.reveal-pop,
.ingredients-section.is-visible .s2-callout.reveal-pop,
.ingredients-section.is-visible .s2-arrow.reveal-pop {
  transition:
    transform 280ms cubic-bezier(.2, .8, .2, 1),
    filter 260ms ease,
    text-shadow 260ms ease,
    opacity 260ms ease;
}

.ingredients-section.is-visible .ingredients-title.reveal-pop:hover {
  transform: translate3d(-50%, -5px, 0) scale(1.018);
  text-shadow: 0 10px 16px rgba(117, 42, 8, 0.24);
}

.section2-ingredient-cloud {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.section2-ingredient-art {
  position: absolute;
  width: var(--ingredient-width);
  height: auto;
  opacity: 0;
  transform:
    translate3d(var(--ingredient-in-x, 0), var(--ingredient-in-y, 18px), 0)
    scale(0.9);
  transform-origin: center;
  filter: drop-shadow(0 8px 8px rgba(97, 42, 8, 0.12));
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(.2, .82, .2, 1);
  transition-delay: 0ms;
  user-select: none;
  pointer-events: none;
  will-change: transform, opacity;
}

.ingredients-section.is-ingredient-art-active .section2-ingredient-art {
  opacity: 0.82;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: var(--ingredient-delay, 0ms);
  pointer-events: auto;
}

.ingredients-section.is-ingredient-art-active .section2-ingredient-art:hover {
  opacity: 1;
  transform: translate3d(0, -5px, 0) scale(1.035);
  filter: drop-shadow(0 12px 12px rgba(97, 42, 8, 0.18));
}

.section2-ingredient-composite {
  display: none;
}

.s2-ing-coconut {
  top: 15.0%;
  left: 3.0%;
  --ingredient-width: 12.2%;
  --ingredient-delay: 40ms;
  --ingredient-in-x: -18px;
}

.s2-ing-walnut {
  top: 26.2%;
  left: 15.8%;
  --ingredient-width: 12.4%;
  --ingredient-delay: 90ms;
  --ingredient-in-x: -12px;
}

.s2-ing-almond {
  top: 50.6%;
  left: 2.7%;
  --ingredient-width: 12.2%;
  --ingredient-delay: 130ms;
  --ingredient-in-x: -18px;
}

.s2-ing-pistachio {
  top: 54.0%;
  left: 15.2%;
  --ingredient-width: 12.8%;
  --ingredient-delay: 170ms;
  --ingredient-in-x: -12px;
}

.s2-ing-oats {
  top: 78.0%;
  left: 3.2%;
  --ingredient-width: 16.0%;
  --ingredient-delay: 210ms;
  --ingredient-in-x: -16px;
}

.s2-ing-honey {
  top: 13.4%;
  right: 11.6%;
  --ingredient-width: 13.6%;
  --ingredient-delay: 70ms;
  --ingredient-in-x: 16px;
}

.s2-ing-raisin {
  top: 18.5%;
  right: 1.6%;
  --ingredient-width: 10.0%;
  --ingredient-delay: 120ms;
  --ingredient-in-x: 18px;
}

.s2-ing-fig {
  top: 57.8%;
  right: 8.6%;
  --ingredient-width: 12.3%;
  --ingredient-delay: 160ms;
  --ingredient-in-x: 14px;
}

.s2-ing-jaggery {
  top: 76.0%;
  right: 1.8%;
  --ingredient-width: 10.8%;
  --ingredient-delay: 210ms;
  --ingredient-in-x: 18px;
}

.s2-move {
  position: absolute;
  z-index: 4;
  transform-origin: center;
  cursor: default;
  will-change: transform, opacity;
}

.s2-move img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 12px 14px rgba(94, 35, 10, 0.34));
}

.ingredients-section.is-visible .s2-move.reveal-pop:hover {
  transform: translate3d(0, -8px, 0) scale(1.032);
  z-index: 8;
}

.ingredients-section.is-visible .s2-move.reveal-pop:hover img {
  filter: drop-shadow(0 18px 18px rgba(94, 35, 10, 0.42));
}

.s2-bar {
  top: 20.8%;
  left: 32.2%;
  width: 33.6%;
  z-index: 4;
}

.s2-bar img {
  transform: none;
}

.s2-left-nuts {
  top: 22.5%;
  left: 25.0%;
  width: 21.3%;
  z-index: 5;
}

.s2-right-nuts {
  top: 24.4%;
  left: 49.9%;
  width: 27.9%;
  z-index: 5;
}

.s2-bottom-nuts {
  top: 83.4%;
  left: 40.2%;
  width: 13.3%;
  z-index: 5;
}

.s2-soft-label {
  display: none;
}

.bar,
.left-nuts,
.right-nuts,
.bottom-nuts,
.bottom-nuts-extra,
.s2-move,
.s2-callout,
.s2-arrow,
.product-art {
  display: none;
}

.s2-callout {
  position: absolute;
  z-index: 6;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.95vw, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  opacity: 1;
  cursor: default;
  will-change: transform, opacity;
}

.ingredients-section.is-visible .s2-callout.reveal-pop:hover {
  transform: translate3d(0, -5px, 0) scale(1.045);
  text-shadow: 0 8px 12px rgba(117, 42, 8, 0.28);
  z-index: 9;
}

.s2-label-left-top { top: 38.4%; left: 7.6%; }
.s2-label-left-mid { top: 57.5%; left: 7.1%; }
.s2-label-left-bottom { top: 76.6%; left: 7.0%; }
.s2-label-right-top { top: 21.9%; right: 15.1%; }
.s2-label-right-mid { top: 57.7%; right: 9.5%; }
.s2-label-right-bottom { top: 74.2%; right: 10.7%; }

.s2-arrow {
  position: absolute;
  z-index: 6;
  overflow: visible;
  opacity: 1;
  cursor: default;
  will-change: transform, opacity;
}

.s2-arrow img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}

.ingredients-section.is-visible .s2-arrow.reveal-pop:hover {
  filter: drop-shadow(0 7px 8px rgba(117, 42, 8, 0.28));
  z-index: 9;
}

.ingredients-section.is-visible .s2-arrow-left-top.reveal-pop:hover,
.ingredients-section.is-visible .s2-arrow-left-mid.reveal-pop:hover,
.ingredients-section.is-visible .s2-arrow-left-bottom.reveal-pop:hover {
  transform: translate3d(-7px, -2px, 0) scale(1.055);
}

.ingredients-section.is-visible .s2-arrow-right-top.reveal-pop:hover,
.ingredients-section.is-visible .s2-arrow-right-mid.reveal-pop:hover,
.ingredients-section.is-visible .s2-arrow-right-bottom.reveal-pop:hover {
  transform: translate3d(7px, -2px, 0) scale(1.055);
}

.s2-arrow-left-top { top: 36.3%; left: 15.7%; width: 12.5%; }
.s2-arrow-left-mid { top: 57.0%; left: 19.0%; width: 8.8%; }
.s2-arrow-left-bottom { top: 69.5%; left: 17.7%; width: 11.8%; }
.s2-arrow-right-top { top: 27.7%; left: 69.3%; width: 10.8%; }
.s2-arrow-right-mid { top: 54.3%; left: 67.2%; width: 10.0%; }
.s2-arrow-right-bottom { top: 71.5%; left: 68.8%; width: 10.3%; }

.product-section {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: #9b075f;
  color: #fff;
}

.product-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.product-title {
  position: absolute;
  top: 10.9%;
  left: 50%;
  z-index: 5;
  margin: 0;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.35vw, 63px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-title .accent {
  color: #ff7d1e;
}

.product-art {
  position: absolute;
  z-index: 2;
  user-select: none;
  pointer-events: auto;
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(.2, .8, .2, 1),
    filter 260ms ease;
  will-change: transform, filter;
}

.product-art img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 15px 15px rgba(58, 0, 36, 0.28));
}

.product-art:hover {
  transform: translate3d(0, -7px, 0) scale(1.025);
  filter: drop-shadow(0 12px 12px rgba(58, 0, 36, 0.22));
  z-index: 6;
}

.product-bar {
  top: 30.4%;
  left: 13.9%;
  width: 33.3%;
  z-index: 3;
}

.product-left-nuts {
  top: 35.7%;
  left: 10.5%;
  width: 16.7%;
  z-index: 4;
}

.product-right-nuts {
  top: 28.9%;
  left: 27.3%;
  width: 15.2%;
  z-index: 4;
}

.product-bottom-nuts {
  top: 80.7%;
  left: 25.8%;
  width: 10.9%;
  z-index: 5;
}

.product-copy {
  position: absolute;
  top: 39.2%;
  left: 46.6%;
  z-index: 4;
  display: grid;
  gap: clamp(16px, 1.35vw, 22px);
  width: 45.8%;
  margin: 0;
  color: #fff;
  font-family: var(--font-body) !important;
  letter-spacing: 0;
  text-align: center;
  font-synthesis: none;
}

.product-copy,
.product-copy * {
  font-family: var(--font-body) !important;
}

.product-copy h3 {
  margin: 0;
  color: #ff7d1e;
  font-size: clamp(22px, 2.35vw, 35px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-copy p {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.34vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.product-order {
  position: absolute;
  top: 72.1%;
  left: 68.2%;
  z-index: 5;
  min-width: min(18vw, 212px);
  min-height: clamp(44px, 4.2vw, 58px);
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #f27922;
  box-shadow: 0 12px 20px rgba(76, 0, 48, 0.18);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 23px);
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
  transform-origin: center;
  text-decoration: none;
  transition:
    transform 260ms cubic-bezier(.2, .8, .2, 1),
    background 220ms ease,
    filter 260ms ease;
}

.product-order span {
  position: relative;
  z-index: 1;
}

.product-order:hover {
  transform: translate3d(-50%, -5px, 0) scale(1.055);
  background: #8c1f5b;
  filter: drop-shadow(0 12px 14px rgba(58, 0, 36, 0.28));
}

.product-order:focus-visible {
  outline: 3px solid rgba(255, 225, 128, 0.95);
  outline-offset: 4px;
  border-radius: 999px;
}

.faq-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  padding: clamp(72px, 8vw, 132px) clamp(28px, 5vw, 96px);
  color: #1e2423;
  background:
    radial-gradient(circle at 86% 13%, rgba(255, 125, 30, 0.12), rgba(255, 125, 30, 0) 28%),
    radial-gradient(circle at 9% 88%, rgba(155, 7, 95, 0.08), rgba(155, 7, 95, 0) 26%),
    #fffaf4;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 30%);
  gap: clamp(44px, 8vw, 150px);
  max-width: 1728px;
  margin: 0 auto;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 7px;
  color: #8c1f5b;
  background: #f3eee4;
  font-family: var(--font-body);
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 700;
}

.faq-title {
  max-width: 760px;
  margin: clamp(32px, 3vw, 48px) 0 0;
  color: #1e2423;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.45vw, 82px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq-title .accent {
  color: #8c1f5b;
}

.faq-intro {
  max-width: 720px;
  margin: clamp(28px, 3vw, 48px) 0 clamp(44px, 5vw, 76px);
  color: rgba(30, 36, 35, 0.82);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.2vw, 23px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.faq-list {
  border-top: 1px solid rgba(30, 36, 35, 0.08);
}

.faq-item {
  border-bottom: 1px solid rgba(30, 36, 35, 0.08);
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  gap: 24px;
  min-height: clamp(74px, 5.6vw, 92px);
  padding: 0;
  border: 0;
  color: #07151d;
  background: transparent;
  font-family: var(--font-heading);
  font-size: clamp(21px, 1.55vw, 29px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  color: #1e2423;
  font-size: clamp(28px, 2vw, 38px);
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms ease, color 220ms ease;
}

.faq-question:hover {
  color: #8c1f5b;
}

.faq-question:hover .faq-plus {
  color: #ff7d1e;
  transform: scale(1.08);
}

.faq-item.is-open .faq-plus {
  color: #8c1f5b;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(30, 36, 35, 0.78);
  font-family: var(--font-body);
  font-size: clamp(16px, 1.03vw, 20px);
  font-weight: 500;
  line-height: 1.55;
  transition: max-height 280ms ease, padding 280ms ease;
}

.faq-answer p {
  max-width: 820px;
  margin: 0;
  padding: 0 64px 28px 0;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-side {
  position: relative;
  min-height: 760px;
}

.faq-contact-card {
  position: sticky;
  top: 12vh;
  display: grid;
  align-content: start;
  gap: 14px;
  margin-top: min(56vh, 560px);
  min-height: clamp(440px, 38vw, 620px);
  padding: clamp(34px, 3.5vw, 52px);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    #f3eee4;
  box-shadow: 0 18px 36px rgba(45, 24, 12, 0.08);
}

.faq-contact-card h3 {
  margin: 0;
  color: #8c1f5b;
  font-family: var(--font-heading);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.faq-contact-card p {
  margin: 0;
  color: #07151d;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.faq-contact-lead {
  max-width: 18ch;
  font-size: clamp(20px, 1.42vw, 28px);
  font-weight: 700;
  line-height: 1.24;
}

.faq-contact-note {
  max-width: 18ch;
  font-size: clamp(16px, 1.12vw, 20px);
  font-weight: 400;
  line-height: 1.55;
}

.faq-mini-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: clamp(84px, 7vw, 106px);
}

.faq-mini-form input,
.faq-mini-form textarea {
  width: 100%;
  border: 1px solid rgba(140, 31, 91, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #07151d;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.faq-mini-form input {
  min-height: 46px;
  padding: 0 15px;
}

.faq-mini-form textarea {
  min-height: 84px;
  padding: 12px 15px;
  resize: vertical;
}

.faq-mini-form input::placeholder,
.faq-mini-form textarea::placeholder {
  color: rgba(7, 21, 29, 0.58);
}

.faq-mini-form input:focus,
.faq-mini-form textarea:focus {
  outline: none;
  border-color: rgba(140, 31, 91, 0.5);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(140, 31, 91, 0.12);
}

.faq-mini-submit {
  justify-self: start;
  min-width: 148px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #8c1f5b;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 240ms cubic-bezier(.2, .8, .2, 1),
    background 220ms ease,
    box-shadow 220ms ease;
}

.faq-mini-submit:hover {
  transform: translateY(-2px);
  background: #f27922;
  box-shadow: 0 12px 18px rgba(58, 0, 36, 0.14);
}

.faq-mini-submit:focus-visible {
  outline: 3px solid rgba(255, 225, 128, 0.95);
  outline-offset: 3px;
}

.faq-contact-link {
  position: absolute;
  left: clamp(34px, 3.5vw, 52px);
  bottom: clamp(34px, 3.5vw, 52px);
  color: #8c1f5b;
  font-family: var(--font-heading);
  font-size: clamp(30px, 2.6vw, 48px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1), color 240ms ease;
}

.faq-contact-link:hover {
  color: #ff7d1e;
  transform: translateY(-4px);
}

.faq-call-float {
  position: absolute;
  top: 36%;
  right: clamp(24px, 1.6vw, 34px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(58px, 4vw, 76px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 28%),
    #8c1f5b;
  box-shadow: 0 18px 24px rgba(44, 13, 17, 0.18);
  text-decoration: none;
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1), background 240ms ease;
}

.faq-call-float:hover {
  transform: translateY(-5px) scale(1.06);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 28%),
    #ff7d1e;
}

.faq-call-float svg {
  width: 42%;
  height: 42%;
  stroke: currentColor;
}

.about-page {
  background: #fff6ea;
}

.about-main {
  color: #251b24;
  background: #fff6ea;
}

.about-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 47vw, 760px);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(144px, 13vw, 220px) clamp(24px, 5vw, 72px) clamp(90px, 9vw, 150px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(140, 31, 91, 0.76) 0%, rgba(178, 75, 121, 0.42) 44%, rgba(255, 246, 234, 0.96) 100%),
    #8c1f5b;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/section-1/product-background.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.48;
}

.about-hero-mark {
  position: absolute;
  left: max(-64px, -3.4vw);
  bottom: clamp(18px, 6vw, 96px);
  width: clamp(260px, 28vw, 520px);
  height: auto;
  opacity: 0.55;
  transform: rotate(-4deg);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.about-hero-shape {
  position: absolute;
  top: clamp(40px, 8vw, 110px);
  right: clamp(-84px, -5vw, -28px);
  width: clamp(190px, 20vw, 370px);
  height: auto;
  opacity: 0.30;
  transform: rotate(8deg);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.about-hero-copy {
  width: min(100%, 820px);
  color: #fff;
  text-shadow: 0 8px 18px rgba(57, 0, 36, 0.24);
}

.about-hero h1 {
  max-width: 680px;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.about-hero p {
  max-width: 740px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 700;
  line-height: 1.62;
}

.about-band {
  padding: clamp(72px, 8vw, 126px) clamp(24px, 5vw, 72px);
}

.about-story {
  background: #fff6ea;
}

.about-story-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  width: min(100%, 1190px);
  margin: 0 auto;
}

.about-origin-card {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(140, 31, 91, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px rgba(79, 33, 50, 0.10);
}

.about-origin-image {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 26vw, 390px);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(145deg, #e8d0b2, #b48963);
}

.about-origin-image img {
  display: block;
  width: min(88%, 390px);
  height: auto;
  transform: rotate(-10deg);
  filter: drop-shadow(0 18px 22px rgba(66, 28, 16, 0.28));
}

.about-origin-card figcaption {
  margin-top: 16px;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 8px;
  background: #fff6ea;
}

.about-origin-card h2,
.about-story-copy h2,
.about-mission h2,
.about-community h2,
.about-social-gallery h2 {
  margin: 0;
  color: #8c1f5b;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-origin-card h2 {
  font-size: clamp(23px, 1.8vw, 32px);
}

.about-origin-card p,
.about-story-copy p,
.about-value-card p,
.about-social-gallery > p,
.about-testimonial-card p {
  margin: 0;
  color: #5a4e57;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.55;
}

.about-origin-card p {
  margin-top: 10px;
  font-size: clamp(15px, 1.05vw, 18px);
}

.about-story-copy {
  display: grid;
  gap: 22px;
}

.about-kicker {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 15px;
  border-radius: 999px;
  color: #8c1f5b !important;
  background: rgba(140, 31, 91, 0.07);
  font-family: var(--font-heading) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase;
}

.about-story-copy h2 {
  max-width: 540px;
  font-size: clamp(34px, 3.2vw, 54px);
}

.about-story-copy p:not(.about-kicker) {
  font-size: clamp(16px, 1.12vw, 19px);
}

.about-story-points {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.about-story-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5a4e57;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.12vw, 19px);
  font-weight: 700;
  line-height: 1.45;
}

.about-story-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #8c1f5b;
  background: rgba(140, 31, 91, 0.08);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 22px;
}

.about-mission {
  padding: clamp(70px, 7vw, 110px) clamp(24px, 5vw, 72px);
  text-align: center;
  background: #fff;
}

.about-mission .about-kicker {
  justify-self: center;
  margin: 0 auto 18px;
}

.about-mission h2 {
  width: min(100%, 760px);
  margin: 0 auto clamp(34px, 4vw, 56px);
  font-size: clamp(31px, 3vw, 50px);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.3vw, 36px);
  width: min(100%, 1190px);
  margin: 0 auto;
}

.about-value-card,
.about-testimonial-card,
.about-gallery-item {
  border: 1px solid rgba(140, 31, 91, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(79, 33, 50, 0.06);
}

.about-value-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 210px;
  padding: clamp(24px, 2.5vw, 34px);
}

.about-value-icon {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #f27922;
  background: rgba(242, 121, 34, 0.13);
}

.about-value-icon.accent {
  color: #8c1f5b;
  background: rgba(140, 31, 91, 0.11);
}

.about-value-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-value-card h3 {
  margin: 8px 0 0;
  color: #8c1f5b;
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 900;
  line-height: 1;
}

.about-value-card p {
  max-width: 310px;
  font-size: clamp(15px, 1vw, 18px);
  text-align: center;
}

.about-community {
  text-align: center;
  background: #fff6ea;
}

.about-community > h2 {
  margin-bottom: clamp(30px, 4vw, 50px);
  font-size: clamp(31px, 3vw, 48px);
}

.about-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.3vw, 34px);
  width: min(100%, 1080px);
  margin: 0 auto clamp(70px, 8vw, 116px);
}

.about-testimonial-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 2.3vw, 32px);
  text-align: left;
}

.about-stars {
  color: #f27922;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 2px;
}

.about-testimonial-card p {
  font-size: clamp(15px, 1vw, 18px);
  font-style: italic;
}

.about-person {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8c1f5b;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
}

.about-person img {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: #fff6ea;
}

.about-social-gallery {
  display: grid;
  justify-items: center;
  width: min(100%, 1190px);
  margin: 0 auto;
}

.about-social-gallery h2 {
  font-size: clamp(31px, 3vw, 46px);
}

.about-social-gallery > p {
  width: min(100%, 720px);
  margin-top: 12px;
  font-size: clamp(16px, 1.1vw, 19px);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  width: 100%;
  margin-top: clamp(34px, 4vw, 54px);
}

.about-gallery-item {
  display: grid;
  place-items: center;
  min-height: clamp(210px, 18vw, 282px);
  margin: 0;
  overflow: hidden;
  background: #ead6bf;
}

.about-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-gallery-item.product {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.68), transparent 22%),
    #d9b58b;
}

.about-gallery-item.product img {
  width: 84%;
  height: auto;
  object-fit: contain;
  transform: rotate(-10deg);
}

.about-gallery-item.texture img {
  object-position: center;
}

.about-gallery-item.icon-card {
  color: #f27922;
  background: #e7d1b8;
}

.about-gallery-item.leaf-card {
  color: #8c1f5b;
  background: #dcc7c1;
}

.about-gallery-item svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: clamp(34px, 4vw, 54px);
  padding: 0 30px;
  border-radius: 999px;
  color: #fff;
  background: #8c1f5b;
  box-shadow: 0 14px 24px rgba(140, 31, 91, 0.18);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), background 220ms ease, box-shadow 220ms ease;
}

.about-instagram-button:hover {
  transform: translateY(-3px);
  background: #f27922;
  box-shadow: 0 18px 28px rgba(242, 121, 34, 0.22);
}

.instagram-feed-grid {
  align-items: stretch;
}

.about-instagram-card {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(140, 31, 91, 0.12);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 18px 34px rgba(110, 72, 87, 0.12);
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1), box-shadow 240ms ease, border-color 240ms ease;
}

.about-instagram-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 121, 34, 0.26);
  box-shadow: 0 24px 42px rgba(140, 31, 91, 0.16);
}

.about-instagram-card:focus-within {
  outline: 3px solid rgba(242, 121, 34, 0.42);
  outline-offset: 6px;
}

.about-instagram-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.about-instagram-media {
  position: relative;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #ead6bf;
}

.about-instagram-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.about-instagram-card:hover .about-instagram-media img {
  transform: scale(1.05);
}

.about-instagram-type {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(140, 31, 91, 0.92);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-instagram-copy {
  display: grid;
  gap: 12px;
  padding: 18px 18px 20px;
}

.about-instagram-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  color: #7d6572;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.about-instagram-meta time {
  color: #8c1f5b;
}

.about-instagram-copy h3 {
  margin: 0;
  color: #251b24;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.45vw, 24px);
  font-weight: 800;
  line-height: 1.08;
}

.about-instagram-description {
  width: 100%;
  margin: 0;
  color: #5a4e57;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.about-instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8c1f5b;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
}

.about-instagram-link:hover .about-instagram-cta,
.about-instagram-link:focus-visible .about-instagram-cta {
  color: #f27922;
}

.contact-page {
  background: #fff6ea;
}

.contact-main {
  min-height: 100vh;
  padding: clamp(168px, 12vw, 220px) clamp(24px, 5vw, 72px) clamp(80px, 8vw, 120px);
  color: #251b24;
  background:
    radial-gradient(circle at 18% 15%, rgba(242, 121, 34, 0.08), transparent 30%),
    radial-gradient(circle at 86% 74%, rgba(140, 31, 91, 0.08), transparent 34%),
    #fff6ea;
}

.contact-hero {
  max-width: 760px;
  margin: 0 auto clamp(42px, 5vw, 70px);
  text-align: center;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: #8c1f5b;
  background: rgba(140, 31, 91, 0.08);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
}

.contact-hero h1 {
  margin: 0 0 10px;
  color: #8c1f5b;
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.contact-hero p {
  margin: 0;
  color: #5a4e57;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 700;
  line-height: 1.62;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.78fr);
  gap: clamp(24px, 2.8vw, 34px);
  width: min(100%, 1390px);
  margin: 0 auto;
}

.contact-form-card,
.contact-details-card,
.contact-social-card {
  border: 1px solid rgba(140, 31, 91, 0.12);
  border-radius: 12px;
  box-shadow: 0 22px 50px rgba(79, 33, 50, 0.08);
}

.contact-form-card {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.94);
}

.contact-form-card h2,
.contact-details-card h2,
.contact-social-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
}

.contact-form-card h2 {
  color: #8c1f5b;
  font-size: clamp(30px, 2.3vw, 42px);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.contact-form-card label {
  display: grid;
  gap: 9px;
  color: #5f505a;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(140, 31, 91, 0.16);
  border-radius: 8px;
  padding: 0 18px;
  color: #251b24;
  background: #fff;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.contact-form-card input {
  min-height: 58px;
}

.contact-form-card textarea {
  min-height: 168px;
  padding-top: 18px;
  resize: vertical;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #8d8190;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: rgba(140, 31, 91, 0.58);
  box-shadow: 0 0 0 4px rgba(140, 31, 91, 0.1);
  background: #fffdf9;
}

.contact-submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 186px;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  color: #fff;
  background: #f27922;
  box-shadow: 0 14px 24px rgba(242, 121, 34, 0.22);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), background 220ms ease, box-shadow 220ms ease;
}

.contact-submit:hover {
  transform: translateY(-3px);
  background: #8c1f5b;
  box-shadow: 0 18px 28px rgba(140, 31, 91, 0.24);
}

.contact-aside {
  display: grid;
  gap: 28px;
  align-content: start;
}

.contact-details-card {
  min-height: 468px;
  padding: clamp(30px, 3vw, 42px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 38%),
    #8c1f5b;
}

.contact-details-card h2 {
  margin-bottom: 36px;
  color: #fff;
  font-size: clamp(27px, 2vw, 36px);
}

.contact-details-card ul {
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-details-card li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #ffcf69;
  background: rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
}

.contact-details-card strong {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
}

.contact-details-card a {
  color: #fff;
  text-decoration: none;
}

.contact-details-card a:hover {
  color: #ffcf69;
}

.contact-social-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
}

.contact-social-card h2 {
  color: #5a4e57;
  font-size: 16px;
}

.contact-socials {
  display: flex;
  gap: 18px;
}

.contact-socials a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(140, 31, 91, 0.24);
  border-radius: 999px;
  color: #8c1f5b;
  background: #fff;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), color 220ms ease, background 220ms ease;
}

.contact-socials svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-socials a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.contact-socials a[aria-label="WhatsApp"] svg {
  stroke-width: 1.8;
}

.contact-socials a:hover {
  transform: translateY(-3px);
  color: #fff;
  background: #8c1f5b;
}

.oatzees-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin: 0;
  padding: clamp(58px, 5.8vw, 104px) clamp(34px, 6vw, 132px) clamp(34px, 3.6vw, 58px);
  border: clamp(5px, 0.75vw, 12px) solid #fffaf4;
  border-radius: clamp(18px, 1.55vw, 30px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(140, 31, 91, 0.24), rgba(140, 31, 91, 0) 34%),
    #121821;
  box-shadow: 0 24px 58px rgba(18, 24, 33, 0.24);
}

.oatzees-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(460px, 1.25fr);
  gap: clamp(56px, 8vw, 150px);
  align-items: start;
  max-width: 1560px;
  margin: 0 auto;
}

.footer-reveal {
  transform: translateY(18px);
  transition:
    transform 520ms cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--footer-delay, 0ms);
}

.oatzees-footer.is-visible .footer-reveal {
  transform: none;
}

.footer-brand-card {
  display: grid;
  gap: clamp(28px, 3vw, 52px);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  transition: transform 240ms cubic-bezier(.2, .8, .2, 1);
}

.footer-logo-img {
  display: block;
  width: clamp(210px, 17vw, 320px);
  height: auto;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-copy {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.2vw, 38px);
}

.footer-link {
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(17px, 1.2vw, 23px);
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.footer-link:hover {
  color: #ff7d1e;
  transform: translateY(-2px);
}

.footer-contact {
  display: grid;
  gap: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-phone {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: color 220ms ease;
}

.footer-phone:hover {
  color: #ff7d1e;
}

.footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.2vw, 23px);
  line-height: 1.4;
}

.footer-newsletter {
  display: grid;
  gap: clamp(22px, 2.3vw, 38px);
  padding-top: 4px;
}

.footer-newsletter h2 {
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(24px, 1.75vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.footer-newsletter p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: clamp(17px, 1.2vw, 23px);
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0;
}

.footer-form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(170px, 270px);
  min-height: clamp(56px, 4.5vw, 70px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
}

.footer-form input {
  width: 100%;
  min-width: 0;
  padding: 0 clamp(18px, 2vw, 28px);
  border: 0;
  color: #fff;
  background: #283039;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  outline: none;
  transition: box-shadow 220ms ease, background 220ms ease;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.88);
  opacity: 1;
}

.footer-form input:focus {
  background: #303943;
  box-shadow: inset 0 0 0 2px rgba(255, 125, 30, 0.62);
}

.footer-form button {
  border: 0;
  color: #fff;
  background: #8c1f5b;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.12vw, 21px);
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), background 220ms ease;
}

.footer-form button:hover {
  background: #ff7d1e;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 1.4vw, 24px);
}

.footer-social-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.footer-social-link {
  display: grid;
  place-items: center;
  width: clamp(44px, 3vw, 56px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #121821;
  background: #fff;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.2vw, 22px);
  font-weight: 900;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), color 220ms ease, background 220ms ease;
}

.footer-social-link:hover {
  color: #fff;
  background: #8c1f5b;
  transform: translateY(-4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1560px;
  margin: clamp(40px, 4.6vw, 74px) auto 0;
  padding-top: clamp(24px, 2.5vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.08vw, 21px);
  font-weight: 700;
  letter-spacing: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 52px);
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 220ms ease;
}

.footer-bottom a:hover {
  color: #ff7d1e;
}

.hero-bg { animation-delay: 0ms; }
.top-crush { animation-delay: 90ms; }
.brand-logo { animation-delay: 170ms; }
.left-nuts { animation-delay: 270ms; }
.right-nuts { animation-delay: 310ms; }
.bar { animation-delay: 360ms; }
.soft-label { animation-delay: 520ms; }
.bottom-nuts { animation-delay: 570ms; }
.bottom-nuts-extra { animation-delay: 610ms; }
.hero-copy { animation-delay: 650ms; }
.order-button { animation-delay: 750ms; }

@media (prefers-reduced-motion: reduce) {
  .hero-item,
  .hero-copy,
  .order-button {
    animation: none;
    transition: none;
  }

  .hero-item img,
  .copy-inner,
  .button-inner,
  .top-crush-track {
    transition: none;
  }

  .top-crush-track {
    animation: none;
  }

  .hotspot-ring::before {
    animation: none;
  }

  .hero-item:hover,
  .hero-copy:hover,
  .order-button:hover {
    transform: translate3d(var(--x), var(--y), 0) rotate(var(--rotate)) scale(var(--scale));
    filter: none;
  }

  .hero-item:hover img,
  .hero-copy:hover .copy-inner,
  .order-button:hover .button-inner {
    transform: none;
    filter: none;
    text-shadow: none;
  }

  .s2-move,
  .s2-callout,
  .s2-arrow,
  .section2-ingredient-art,
  .section2-ingredient-composite,
  .product-art,
  .product-order,
  .site-brand,
  .site-nav a,
  .site-cta,
  .footer-reveal,
  .footer-logo,
  .footer-link,
  .footer-form button,
  .footer-form input,
  .reveal-pop {
    transition: none;
    transform: none !important;
    opacity: 1 !important;
  }

  .ingredients-title.reveal-pop {
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 1120px) {
  .site-header-inner {
    grid-template-columns: minmax(130px, 0.8fr) auto minmax(170px, 0.8fr);
  }

  .site-nav {
    gap: clamp(28px, 5vw, 74px);
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-side {
    min-height: auto;
  }

  .faq-contact-card {
    position: relative;
    top: auto;
    margin-top: 0;
    min-height: 320px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-form {
    max-width: 820px;
  }
}

@media (max-width: 900px) {
  .bizbar-hero,
  .ingredients-section {
    aspect-ratio: auto;
    min-height: clamp(640px, 118vw, 820px);
  }

  .ingredients-title,
  .product-title {
    width: 92%;
    white-space: normal;
    text-align: center;
  }

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

  .contact-main {
    padding-top: 132px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 560px;
    padding-top: 132px;
  }

  .about-story-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-story-copy {
    text-align: center;
  }

  .about-story-copy .about-kicker {
    justify-self: center;
  }

  .about-story-copy h2 {
    margin-inline: auto;
  }

  .about-values,
  .about-testimonials,
  .about-gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-value-card {
    min-height: auto;
  }

  .about-gallery-item {
    min-height: 260px;
  }

  .contact-details-card {
    min-height: auto;
  }
}

@media (min-width: 1500px) {
  .product-copy {
    top: 38.0%;
    left: 45.9%;
    width: 44.4%;
  }

  .product-order {
    top: 67.2%;
    left: 67.6%;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
  }

  main > section,
  main > article,
  .oatzees-footer {
    scroll-margin-top: 76px;
  }

  .site-header-inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 58px;
    padding: 0 10px 0 14px;
  }

  .site-brand {
    width: clamp(118px, 38vw, 154px);
  }

  .site-cta {
    display: none;
  }

  .site-menu-toggle {
    justify-self: end;
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background: rgba(255, 250, 244, 0.97);
    box-shadow: 0 20px 34px rgba(43, 0, 29, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -8px, 0) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 220ms cubic-bezier(.2, .8, .2, 1);
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 7px;
    font-size: 17px;
  }

  .site-nav a:hover {
    background: rgba(140, 31, 91, 0.08);
  }

  .ingredient-hotspot {
    width: 24px;
    height: 24px;
  }

  .hotspot-ring {
    border-width: 2px;
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.26),
      0 7px 12px rgba(58, 0, 36, 0.26);
  }

  .hotspot-ring::before {
    inset: -9px;
  }

  .hotspot-card {
    width: 154px;
    padding: 12px 12px 14px;
    border-radius: 8px;
  }

  .hotspot-card img {
    width: 66px;
    height: 66px;
    margin-bottom: 8px;
  }

  .hotspot-card strong {
    font-size: 18px;
  }

  .hotspot-card span {
    font-size: 12px;
    line-height: 1.3;
  }

  .site-mobile-order {
    display: flex;
    color: #fff !important;
    background:
      linear-gradient(180deg, rgba(255, 125, 30, 0.22), rgba(255, 125, 30, 0)),
      #8c1f5b;
  }

  .site-mobile-order:hover {
    color: #fff !important;
    background: #ff7d1e !important;
  }

  .contact-main {
    padding: 108px 18px 56px;
  }

  .about-hero {
    min-height: 520px;
    padding: 118px 22px 78px;
  }

  .about-hero-mark {
    left: -108px;
    bottom: 12px;
    width: 310px;
    opacity: 0.42;
  }

  .about-hero-shape {
    top: 78px;
    right: -92px;
    width: 220px;
  }

  .about-hero h1 {
    font-size: clamp(34px, 10.4vw, 44px);
  }

  .about-hero-copy,
  .about-hero p {
    max-width: min(330px, calc(100vw - 44px));
  }

  .about-hero h1,
  .about-hero p {
    overflow-wrap: anywhere;
  }

  .about-hero p {
    font-size: 15px;
  }

  .about-band,
  .about-mission {
    padding: 58px 20px;
  }

  .about-origin-card {
    padding: 12px;
  }

  .about-origin-image {
    min-height: 270px;
  }

  .about-origin-image img {
    width: min(86%, 300px);
  }

  .about-story-copy h2,
  .about-mission h2,
  .about-community > h2,
  .about-social-gallery h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .about-values,
  .about-testimonials {
    gap: 18px;
  }

  .about-testimonials {
    margin-bottom: 60px;
  }

  .about-gallery-grid {
    gap: 16px;
  }

  .about-gallery-item {
    min-height: 220px;
  }

  .contact-hero {
    margin-bottom: 38px;
  }

  .contact-hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .contact-form-card {
    gap: 20px;
    padding: 24px 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-submit {
    justify-self: stretch;
    width: 100%;
  }

  .contact-details-card {
    padding: 28px 22px;
  }

  .contact-details-card li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .bizbar-hero {
    min-height: clamp(700px, 204vw, 760px);
  }

  .ingredients-section {
    min-height: clamp(720px, 216vw, 780px);
  }

  .product-section {
    aspect-ratio: auto;
    min-height: clamp(620px, 168vw, 760px);
  }

  .hero-bg img {
    object-position: 22% center;
  }

  .top-crush {
    top: -21.5%;
    left: -44%;
    width: 190%;
  }

  .brand-logo {
    top: 9.6%;
    left: 9.3%;
    width: 82.5%;
  }

  .bar {
    top: 23.2%;
    left: 6.5%;
    width: 101%;
  }

  .left-nuts {
    top: 31.4%;
    left: -1.0%;
    width: 49%;
    z-index: 6;
  }

  .right-nuts {
    top: 21.8%;
    left: 58.0%;
    width: 42%;
  }

  .soft-label {
    top: 32.6%;
    left: 62.2%;
    width: 24.5%;
    z-index: 8;
  }

  .bottom-nuts {
    top: 65.4%;
    left: 44.8%;
    width: 29.5%;
  }

  .bottom-nuts-extra {
    top: 68.5%;
    left: 57.6%;
    width: 20%;
  }

  .hero-copy {
    top: 78.8%;
    left: 6.5%;
    --x: 0px;
    font-size: clamp(29px, 8.7vw, 35px);
    line-height: 1.08;
    text-align: left;
  }

  .order-button {
    top: 91.2%;
    left: 6.5%;
    width: min(42%, 150px);
    min-height: 34px;
    border-width: 3px;
    font-size: clamp(14px, 4vw, 18px);
    --x: 0px;
  }

  .order-button::before {
    inset: 3px 6px auto;
  }

  .ingredients-title {
    top: 10.2%;
    left: 22.5%;
    width: 58%;
    font-size: clamp(32px, 9.4vw, 38px);
    line-height: 0.96;
    text-align: left;
    transform: none;
  }

  .ingredients-title.reveal-pop,
  .ingredients-section.is-visible .ingredients-title.reveal-pop,
  .ingredients-section.is-visible .ingredients-title.reveal-pop:hover {
    transform: none;
  }

  .s2-callout,
  .s2-arrow {
    display: none;
  }

  .section2-ingredient-art {
    display: none;
  }

  .section2-ingredient-composite {
    position: absolute;
    top: 57.8%;
    left: 50%;
    display: block;
    width: min(83vw, 316px);
    height: auto;
    opacity: 0;
    transform: translate3d(-50%, 18px, 0) scale(0.94);
    transform-origin: center;
    filter: drop-shadow(0 5px 6px rgba(97, 42, 8, 0.10));
    transition:
      opacity 380ms ease,
      transform 560ms cubic-bezier(.2, .82, .2, 1);
    user-select: none;
    pointer-events: none;
    will-change: transform, opacity;
  }

  .ingredients-section.is-ingredient-art-active .section2-ingredient-composite {
    opacity: 0.76;
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .s2-bar {
    top: 30.9%;
    left: 13.3%;
    width: 74%;
  }

  .s2-left-nuts {
    top: 30.8%;
    left: 3.2%;
    width: 45%;
  }

  .s2-right-nuts {
    top: 28.6%;
    left: 50.2%;
    width: 51%;
  }

  .s2-bottom-nuts {
    top: 68.3%;
    left: 33.6%;
    width: 33%;
  }

  .s2-soft-label {
    display: none;
    top: 39.0%;
    left: 57.0%;
    width: 18.5%;
    z-index: 7;
  }

  .product-title {
    top: 4.2%;
    left: 50%;
    width: 82%;
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.04;
  }

  .product-left-nuts {
    top: 25%;
    left: 3%;
    width: 36%;
  }

  .product-bar {
    top: 25%;
    left: 12%;
    width: 48%;
  }

  .product-right-nuts {
    top: 25%;
    left: 43%;
    width: 34%;
  }

  .product-bottom-nuts {
    top: 71%;
    left: 18%;
    width: 22%;
  }

  .product-copy {
    top: 62.8%;
    left: 50%;
    gap: 7px;
    width: 82%;
    transform: translateX(-50%);
    text-align: center;
  }

  .product-copy h3 {
    font-size: clamp(17px, 4.9vw, 22px);
    line-height: 1.08;
  }

  .product-copy p {
    font-size: clamp(11.4px, 3.12vw, 14px);
    line-height: 1.38;
  }

  .product-copy br {
    display: none;
  }

  .product-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 88.4%;
    left: 50%;
    width: min(58%, 190px);
    min-height: 44px;
    padding: 0 20px;
    font-size: 16px;
    transform: translateX(-50%);
  }

  .faq-section {
    padding: 56px 22px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-title {
    font-size: clamp(34px, 10vw, 54px);
  }

  .faq-question {
    min-height: 70px;
    font-size: clamp(20px, 5.7vw, 28px);
  }

  .faq-answer p {
    padding-right: 0;
  }

  .faq-side {
    min-height: auto;
  }

  .faq-contact-card {
    position: relative;
    top: auto;
    margin-top: 0;
    min-height: 460px;
  }

  .faq-call-float {
    top: auto;
    right: 22px;
    bottom: 22px;
  }

  .oatzees-footer {
    margin: 0;
    padding: 58px 24px 32px;
    border-width: 6px;
    border-radius: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-brand-card {
    gap: 30px;
  }

  .footer-links {
    gap: 18px 24px;
  }

  .footer-form {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .footer-form input,
  .footer-form button {
    min-height: 58px;
  }

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

  .footer-legal {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .bizbar-hero {
    min-height: clamp(700px, 204vw, 760px);
  }

  .ingredients-section {
    min-height: clamp(720px, 216vw, 780px);
  }

  .product-section {
    min-height: 620px;
  }

  .hero-copy {
    font-size: clamp(29px, 8.7vw, 35px);
  }

  .ingredients-title {
    font-size: clamp(32px, 9.4vw, 38px);
  }

  .about-hero {
    min-height: 500px;
  }

  .about-origin-image {
    min-height: 230px;
  }

  .about-gallery-item {
    min-height: 190px;
  }

  .product-copy {
    top: 62.2%;
    left: 50%;
    width: 84%;
    gap: 7px;
  }

  .product-copy h3 {
    font-size: 18.5px;
    line-height: 1.08;
  }

  .product-copy p {
    font-size: 11.4px;
    line-height: 1.36;
  }

  .faq-section {
    padding: 48px 16px;
  }

  .faq-eyebrow {
    min-height: 44px;
    padding: 0 16px;
  }

  .faq-contact-card {
    min-height: 430px;
  }

  .oatzees-footer {
    padding-inline: 18px;
  }

  .footer-socials {
    gap: 14px;
  }
}

@media (max-width: 1100px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .instagram-feed-grid {
    grid-template-columns: 1fr;
  }

  .about-instagram-copy {
    padding: 16px 16px 18px;
  }
}
