:root {
  --ink: #17221f;
  --muted: #5d6a63;
  --paper: #fbf7ed;
  --card: #ffffff;
  --leaf: #176b3a;
  --leaf-dark: #0f3d2d;
  --mint: #e9f6e8;
  --lime: #cfe8a9;
  --mango: #f1a129;
  --mango-deep: #d7661d;
  --sky: #e8f1f4;
  --line: #dde5dc;
  --shadow: 0 22px 60px rgba(18, 45, 33, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(251, 247, 237, 0.96), rgba(255, 255, 255, 0.98) 38%, rgba(233, 246, 232, 0.9)),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(241, 161, 41, 0.18), transparent 28rem),
    var(--paper);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.intro-stack {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.intro-stack p {
  margin: 0;
  color: var(--leaf-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.intro-mark {
  position: relative;
  width: 108px;
  height: 120px;
  display: grid;
  place-items: center;
}

.intro-seed {
  width: 82px;
  height: 98px;
  border-radius: 54% 46% 58% 42% / 52% 48% 56% 44%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 42%),
    linear-gradient(145deg, var(--mango), var(--mango-deep));
  box-shadow:
    0 18px 40px rgba(215, 102, 29, 0.24),
    inset -12px -16px 28px rgba(110, 58, 15, 0.16);
  transform-origin: center;
  animation: seed-arrive 1500ms cubic-bezier(0.2, 0.75, 0.22, 1) forwards;
}

.intro-mark::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: rgba(23, 34, 31, 0.18);
  transform: translateX(-50%);
  filter: blur(2px);
}

.intro-sprout {
  --sprout-angle: 0deg;
  --sprout-x: 0;
  position: absolute;
  top: 27px;
  left: 50%;
  width: 34px;
  height: 21px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, var(--lime), var(--leaf));
  opacity: 0;
  transform-origin: 0 100%;
  transform: translateX(var(--sprout-x)) rotate(var(--sprout-angle)) scale(0.36);
  animation: sprout-pop 1500ms ease forwards;
}

.sprout-left {
  --sprout-angle: -38deg;
  --sprout-x: -2px;
}

.sprout-right {
  --sprout-angle: 54deg;
  --sprout-x: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(18px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(221, 229, 220, 0.86);
  background: rgba(251, 247, 237, 0.88);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.header-cta {
  flex: 0 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark,
.footer-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 38px;
  border-radius: 54% 46% 58% 42% / 52% 48% 56% 44%;
  background: linear-gradient(145deg, var(--mango), var(--mango-deep));
  box-shadow: inset -5px -8px 14px rgba(98, 46, 12, 0.16);
}

.brand-mark::after,
.footer-mark::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -9px;
  width: 18px;
  height: 13px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, var(--lime), var(--leaf));
  transform: rotate(18deg);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(221, 229, 220, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.site-nav a,
.header-cta,
.filter-button,
.product-link {
  min-height: 42px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mint);
  color: var(--leaf-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 17px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(23, 34, 31, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--leaf-dark);
  transform: translateY(-1px);
}

.catalog {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 26px;
}

.catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  line-height: 0.98;
}

.lead {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.quick-panel {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(23, 107, 58, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(233, 246, 232, 0.96), rgba(232, 241, 244, 0.9)),
    #ffffff;
  box-shadow: 0 12px 30px rgba(18, 45, 33, 0.08);
}

.quick-panel strong {
  display: block;
  margin-bottom: 5px;
  color: var(--leaf-dark);
}

.quick-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.pulse-dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(23, 107, 58, 0.3);
  animation: dot-pulse 2200ms ease-out infinite;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin: 30px 0 18px;
}

.search-box {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.search-box span {
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 107, 58, 0.24);
  border-radius: var(--radius);
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-box input:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(23, 107, 58, 0.12);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  cursor: pointer;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  color: var(--leaf-dark);
  transform: translateY(-1px);
}

.filter-button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.catalog-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-count span {
  color: var(--ink);
  font-weight: 800;
}

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

.product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 220, 0.96);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 14px 34px rgba(18, 45, 33, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover {
  border-color: rgba(23, 107, 58, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card[hidden] {
  display: none;
}

.product-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(15, 61, 45, 0.98), rgba(6, 42, 36, 0.96)),
    var(--leaf-dark);
}

.product-visual::after {
  display: none;
}

.product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: none;
}

.product-card:hover .product-visual img {
  transform: none;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-top h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.product-top span {
  flex: 0 0 auto;
  max-width: 96px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff3d7;
  color: #70400d;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
}

.product-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.product-meta li {
  padding: 6px 9px;
  border: 1px solid rgba(23, 107, 58, 0.14);
  border-radius: 999px;
  background: rgba(233, 246, 232, 0.74);
  color: var(--leaf-dark);
  font-size: 0.8rem;
  font-weight: 750;
}

.variant-list {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
}

.variant-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(221, 229, 220, 0.92);
  border-radius: var(--radius);
  background: rgba(251, 247, 237, 0.72);
}

.variant-row span {
  min-width: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.35;
}

.variant-row strong {
  flex: 0 0 auto;
  color: #70400d;
  font-size: 0.92rem;
}

.kit-includes {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.kit-includes li {
  position: relative;
  min-width: 0;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.kit-includes li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mango);
}

.product-copy .kit-extras {
  margin: 0 0 18px;
  padding: 9px 10px;
  border-radius: var(--radius);
  background: #fff3d7;
  color: #70400d;
  font-size: 0.86rem;
  font-weight: 750;
}

.empty-state {
  margin: 26px 0 0;
  padding: 18px;
  border: 1px dashed rgba(23, 107, 58, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  text-align: center;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  border: 1px solid rgba(23, 34, 31, 0.12);
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  background: var(--leaf);
  transform: translateY(-1px);
}

.bulk-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(221, 229, 220, 0.96);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 36px rgba(18, 45, 33, 0.07);
}

.bulk-strip div {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.bulk-strip span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  border-radius: 50%;
  background: var(--mango);
  color: #3d2407;
  font-size: 0.86rem;
  font-weight: 900;
}

.bulk-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.bulk-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(15, 61, 45, 0.96), rgba(23, 34, 31, 0.98)),
    var(--ink);
  color: #f8f5e9;
  padding: 44px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  gap: 26px;
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-mark {
  margin-bottom: 16px;
}

.footer-brand h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  color: rgba(248, 245, 233, 0.78);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  font-style: normal;
}

.contact-item {
  min-width: 0;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #f8f5e9;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-item:hover,
.contact-item:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.contact-item span {
  color: rgba(248, 245, 233, 0.68);
  font-size: 0.86rem;
}

.contact-item strong {
  font-size: 1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@keyframes seed-arrive {
  0% {
    opacity: 0;
    transform: rotate(-130deg) scale(0.58);
  }

  54% {
    opacity: 1;
    transform: rotate(18deg) scale(1.06);
  }

  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes sprout-pop {
  0%,
  48% {
    opacity: 0;
    transform: translateX(var(--sprout-x)) rotate(var(--sprout-angle)) scale(0.36);
  }

  72% {
    opacity: 1;
    transform: translateX(var(--sprout-x)) rotate(var(--sprout-angle)) scale(1.06);
  }

  100% {
    opacity: 1;
    transform: translateX(var(--sprout-x)) rotate(var(--sprout-angle)) scale(1);
  }
}

@keyframes dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(23, 107, 58, 0.3);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(23, 107, 58, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(23, 107, 58, 0);
  }
}

@keyframes image-drift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.05) translate3d(0, -5px, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .product-card.is-featured .product-visual img {
    animation: none;
  }
}

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

@media (max-width: 980px) {
  .catalog-head,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .catalog-count {
    justify-self: start;
  }

  .quick-panel {
    max-width: 620px;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .site-nav {
    width: min(100%, 330px);
    justify-content: space-between;
    max-width: 100%;
    overflow-x: auto;
  }

  .site-nav a {
    flex: 1;
  }

  .header-cta {
    width: min(100%, 330px);
  }

  .catalog {
    padding-top: 30px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .lead {
    font-size: 1rem;
  }

  .catalog-tools {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .filter-group {
    width: 100%;
  }

  .filter-button {
    flex: 1 1 calc(50% - 8px);
  }

  .product-grid,
  .bulk-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-visual {
    aspect-ratio: 16 / 10;
  }

  .product-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-top span {
    max-width: none;
  }
}

@media (max-width: 440px) {
  .catalog,
  .bulk-strip,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .site-nav a {
    padding-inline: 9px;
  }

  h1 {
    font-size: 1.82rem;
  }
}
.intro-scene {
  width: 220px;
  height: 286px;
  overflow: visible;
}

.intro-label {
  opacity: 0;
  animation: intro-label-in 500ms ease 7000ms forwards;
}

.scene-camera {
  transform-origin: 152px 244px;
  animation: scene-zoom 900ms cubic-bezier(0.45, 0, 0.2, 1) 5000ms forwards;
}

.big-tree {
  animation: big-tree-vanish 900ms ease 5000ms forwards;
}

.monkey-group {
  opacity: 0;
  transform: translate(87px, 238px);
  animation:
    monkey-climb-position 2800ms cubic-bezier(0.35, 0, 0.25, 1) forwards,
    monkey-reach 400ms ease 2800ms forwards,
    monkey-eat-bob 1000ms ease 3200ms forwards,
    monkey-throw-pose 600ms ease 4200ms forwards,
    monkey-vanish 500ms ease 5000ms forwards;
}

.monkey-rig .leg-left,
.monkey-rig .leg-left-lower,
.monkey-rig .leg-right,
.monkey-rig .leg-right-lower,
.monkey-rig .arm-left,
.monkey-rig .arm-left-lower,
.monkey-rig .arm-right,
.monkey-rig .arm-right-lower,
.monkey-tail,
.monkey-head {
  transform-box: fill-box;
}

.monkey-rig .leg-left {
  transform-origin: 0px 14px;
  animation:
    climb-leg-left 700ms ease-in-out 0ms 4 forwards,
    reach-leg-left 400ms ease 2800ms forwards,
    throw-leg-left 600ms ease 4200ms forwards;
}

.monkey-rig .leg-left-lower,
.monkey-rig .leg-right-lower,
.monkey-rig .arm-left-lower,
.monkey-rig .arm-right-lower {
  transform-origin: 0px 0px;
}

.monkey-rig .leg-left-lower {
  animation:
    climb-knee-left 700ms ease-in-out 0ms 4 forwards,
    reach-knee-left 400ms ease 2800ms forwards;
}

.monkey-rig .leg-right {
  transform-origin: 0px 14px;
  animation:
    climb-leg-right 700ms ease-in-out 0ms 4 forwards,
    reach-leg-right 400ms ease 2800ms forwards,
    throw-leg-right 600ms ease 4200ms forwards;
}

.monkey-rig .leg-right-lower {
  animation:
    climb-knee-right 700ms ease-in-out 0ms 4 forwards,
    reach-knee-right 400ms ease 2800ms forwards;
}

.monkey-rig .arm-left {
  transform-origin: -8px 4px;
  animation:
    climb-arm-left 700ms ease-in-out 0ms 4 forwards,
    reach-arm-left 400ms ease 2800ms forwards,
    throw-arm-left 600ms ease 4200ms forwards;
}

.monkey-rig .arm-left-lower {
  animation:
    climb-forearm-left 700ms ease-in-out 0ms 4 forwards,
    reach-forearm-left 400ms ease 2800ms forwards;
}

.monkey-rig .arm-right {
  transform-origin: 8px 4px;
  animation:
    climb-arm-right 700ms ease-in-out 0ms 4 forwards,
    reach-arm-right 400ms ease 2800ms forwards,
    throw-arm-right 600ms ease 4200ms forwards;
}

.monkey-rig .arm-right-lower {
  animation:
    climb-forearm-right 700ms ease-in-out 0ms 4 forwards,
    reach-forearm-right 400ms ease 2800ms forwards,
    throw-forearm-right 600ms ease 4200ms forwards;
}

.monkey-tail {
  transform-origin: 8px 20px;
  animation:
    tail-climb 700ms ease-in-out 0ms 4 forwards,
    tail-wag 500ms ease 3200ms 3 alternate;
}

.monkey-head {
  transform-origin: 0px -10px;
  animation:
    head-eat 1000ms ease 3200ms forwards,
    head-throw 600ms ease 4200ms forwards;
}

.mango-on-tree {
  animation: mango-pick 350ms ease 3000ms forwards;
}

.mango-held {
  opacity: 0;
  transform-origin: 12px 4px;
  animation:
    mango-grab 350ms ease 3000ms forwards,
    mango-bite 1000ms ease 3350ms forwards;
}

.monkey-mouth {
  transform-origin: 0px -6px;
  animation: mouth-chew 1000ms ease 3200ms forwards;
}

.seed-projectile {
  opacity: 0;
  transform: translate(126px, 108px);
  animation:
    seed-throw 650ms cubic-bezier(0.35, 0.15, 0.55, 1) 4200ms forwards,
    seed-bury 350ms ease 5600ms forwards;
}

.new-tree {
  opacity: 0;
  transform-origin: 152px 244px;
  animation: new-tree-grow 1400ms cubic-bezier(0.22, 0.85, 0.28, 1) 5600ms forwards;
}

.new-ground {
  animation: new-ground-in 600ms ease 6200ms forwards;
}

.new-mango {
  opacity: 0;
  transform-origin: 163px 225px;
  animation: new-mango-pop 500ms cubic-bezier(0.2, 0.9, 0.3, 1) 6800ms forwards;
}

@keyframes intro-label-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scene-zoom {
  0%, 74% { transform: scale(1) translate(0, 0); }
  100%    { transform: scale(3.4) translate(-15px, -46px); }
}

@keyframes big-tree-vanish {
  0%, 20% { opacity: 1; }
  100%    { opacity: 0; }
}

@keyframes monkey-climb-position {
  0%   { opacity: 0; transform: translate(87px, 238px); }
  8%   { opacity: 1; }
  100% { opacity: 1; transform: translate(87px, 112px); }
}

@keyframes monkey-reach {
  from { transform: translate(87px, 112px); }
  to   { transform: translate(84px, 108px); }
}

@keyframes monkey-eat-bob {
  from { transform: translate(84px, 108px); }
  20%  { transform: translate(84px, 104px) rotate(-3deg); }
  40%  { transform: translate(84px, 108px) rotate(2deg); }
  60%  { transform: translate(84px, 105px) rotate(-2deg); }
  80%  { transform: translate(84px, 108px) rotate(1deg); }
  to   { transform: translate(84px, 108px); }
}

@keyframes monkey-throw-pose {
  from { transform: translate(84px, 108px); }
  55%  { transform: translate(86px, 110px) rotate(4deg); }
  to   { transform: translate(86px, 110px) rotate(4deg); }
}

@keyframes monkey-vanish {
  to { opacity: 0; }
}

@keyframes climb-arm-left {
  0%, 100% { transform: rotate(42deg); }
  25%      { transform: rotate(-58deg); }
  50%      { transform: rotate(36deg); }
  75%      { transform: rotate(-52deg); }
}

@keyframes climb-forearm-left {
  0%, 100% { transform: rotate(18deg); }
  25%      { transform: rotate(-36deg); }
  50%      { transform: rotate(14deg); }
  75%      { transform: rotate(-30deg); }
}

@keyframes climb-arm-right {
  0%, 100% { transform: rotate(-38deg); }
  25%      { transform: rotate(52deg); }
  50%      { transform: rotate(-32deg); }
  75%      { transform: rotate(48deg); }
}

@keyframes climb-forearm-right {
  0%, 100% { transform: rotate(-16deg); }
  25%      { transform: rotate(32deg); }
  50%      { transform: rotate(-12deg); }
  75%      { transform: rotate(28deg); }
}

@keyframes climb-leg-left {
  0%, 100% { transform: rotate(-28deg); }
  25%      { transform: rotate(34deg); }
  50%      { transform: rotate(-24deg); }
  75%      { transform: rotate(30deg); }
}

@keyframes climb-knee-left {
  0%, 100% { transform: rotate(22deg); }
  25%      { transform: rotate(-18deg); }
  50%      { transform: rotate(18deg); }
  75%      { transform: rotate(-14deg); }
}

@keyframes climb-leg-right {
  0%, 100% { transform: rotate(32deg); }
  25%      { transform: rotate(-36deg); }
  50%      { transform: rotate(28deg); }
  75%      { transform: rotate(-32deg); }
}

@keyframes climb-knee-right {
  0%, 100% { transform: rotate(-20deg); }
  25%      { transform: rotate(16deg); }
  50%      { transform: rotate(-16deg); }
  75%      { transform: rotate(12deg); }
}

@keyframes tail-climb {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(10deg); }
}

@keyframes reach-arm-left {
  from { transform: rotate(42deg); }
  to   { transform: rotate(18deg); }
}

@keyframes reach-forearm-left {
  from { transform: rotate(18deg); }
  to   { transform: rotate(-8deg); }
}

@keyframes reach-arm-right {
  from { transform: rotate(-38deg); }
  to   { transform: rotate(-72deg); }
}

@keyframes reach-forearm-right {
  from { transform: rotate(-16deg); }
  to   { transform: rotate(-28deg); }
}

@keyframes reach-leg-left {
  from { transform: rotate(-28deg); }
  to   { transform: rotate(-8deg); }
}

@keyframes reach-leg-right {
  from { transform: rotate(32deg); }
  to   { transform: rotate(12deg); }
}

@keyframes reach-knee-left {
  from { transform: rotate(22deg); }
  to   { transform: rotate(6deg); }
}

@keyframes reach-knee-right {
  from { transform: rotate(-20deg); }
  to   { transform: rotate(-4deg); }
}

@keyframes throw-arm-left {
  from { transform: rotate(18deg); }
  to   { transform: rotate(8deg); }
}

@keyframes throw-arm-right {
  from { transform: rotate(-72deg); }
  to   { transform: rotate(58deg); }
}

@keyframes throw-forearm-right {
  from { transform: rotate(-28deg); }
  to   { transform: rotate(42deg); }
}

@keyframes throw-leg-left {
  from { transform: rotate(-8deg); }
  to   { transform: rotate(-4deg); }
}

@keyframes throw-leg-right {
  from { transform: rotate(12deg); }
  to   { transform: rotate(18deg); }
}

@keyframes head-eat {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-8deg); }
  50%      { transform: rotate(6deg); }
  75%      { transform: rotate(-5deg); }
}

@keyframes head-throw {
  to { transform: rotate(10deg); }
}

@keyframes mouth-chew {
  0%, 100% { transform: scaleY(1); }
  25%      { transform: scaleY(1.35); }
  50%      { transform: scaleY(0.85); }
  75%      { transform: scaleY(1.25); }
}

@keyframes mango-pick {
  to { opacity: 0; transform: scale(0); }
}

@keyframes mango-grab {
  to { opacity: 1; transform: scale(1); }
}

@keyframes mango-bite {
  0%   { opacity: 1; transform: scale(1); }
  35%  { opacity: 0.7; transform: scale(0.72); }
  65%  { opacity: 0.35; transform: scale(0.42); }
  100% { opacity: 0; transform: scale(0.1); }
}

@keyframes seed-throw {
  0%   { opacity: 1; transform: translate(126px, 108px) rotate(0deg); }
  44%  { opacity: 1; transform: translate(166px, 182px) rotate(120deg); }
  100% { opacity: 1; transform: translate(152px, 244px) rotate(200deg); }
}

@keyframes seed-bury {
  to { opacity: 0; transform: translate(152px, 244px) rotate(200deg) scale(0.4); }
}

@keyframes new-tree-grow {
  0%   { opacity: 0; transform: scale(0.06); }
  18%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes new-ground-in {
  to { opacity: 0.55; }
}

@keyframes new-mango-pop {
  0%   { opacity: 0; transform: scale(0); }
  70%  { opacity: 1; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes tail-wag {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(16deg); }
  100% { transform: rotate(-10deg); }
}
