:root {
  --banana: #ffe873;
  --banana-soft: #fff2aa;
  --cream: #fff8dc;
  --paper: #ffefc2;
  --green: #315b28;
  --green-2: #466f45;
  --red: #ef3028;
  --orange: #f7a824;
  --ink: #251d17;
  --brown: #6b4b32;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(37, 29, 23, 0.18);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 12px 28px;
  border-bottom: 2px solid rgba(49, 91, 40, 0.16);
  background: rgba(255, 242, 170, 0.9);
  backdrop-filter: blur(14px);
  transition: box-shadow 160ms ease, background 160ms ease;
}

.site-header.scrolled {
  background: rgba(255, 242, 170, 0.96);
  box-shadow: 0 10px 26px rgba(37, 29, 23, 0.12);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  transform: rotate(-1deg);
  color: var(--green);
  text-shadow: 0 4px 0 rgba(37, 29, 23, 0.13);
}

.brand-mark.small {
  transform: scale(0.86) rotate(-1deg);
  transform-origin: left center;
}

.brand-letter {
  display: inline-block;
  font-family: "Chewy", "Nunito Sans", system-ui, sans-serif;
  font-size: 2.2rem;
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-letter.red {
  color: var(--red);
}

.brand-letter.green {
  color: var(--green-2);
}

.brand-letter:nth-child(1) {
  transform: rotate(-4deg) translateY(1px);
}

.brand-letter:nth-child(2) {
  transform: rotate(3deg);
}

.brand-letter:nth-child(3) {
  transform: rotate(-2deg) translateY(-1px);
}

.brand-letter:nth-child(4) {
  transform: rotate(4deg);
}

.brand-letter:nth-child(5) {
  transform: rotate(-3deg);
}

.brand-letter:nth-child(6) {
  transform: rotate(2deg) translateY(-1px);
}

.brand-letter:nth-child(7) {
  transform: rotate(3deg);
}

.brand-letter:nth-child(8) {
  transform: rotate(-2deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-nav a {
  min-height: 38px;
  padding: 10px 12px;
  border: 2px solid transparent;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(49, 91, 40, 0.34);
  outline: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 2px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
}

.section-band {
  position: relative;
  overflow: hidden;
  padding-inline: 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 42px;
  min-height: calc(88svh - 70px);
  padding-top: 54px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at 14px 14px, rgba(255, 255, 255, 0.55) 0 2px, transparent 3px),
    linear-gradient(115deg, var(--banana-soft) 0%, var(--banana) 54%, #ffd05d 100%);
  background-size: 34px 34px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -22%;
  width: 52%;
  height: 44%;
  background: rgba(49, 91, 40, 0.09);
  clip-path: polygon(8% 70%, 28% 24%, 62% 8%, 100% 38%, 82% 100%, 26% 92%);
}

.texture-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.flake {
  position: absolute;
  display: block;
  width: 34px;
  height: 14px;
  border-radius: 50% 50% 46% 44%;
  background: rgba(255, 255, 255, 0.6);
  transform: rotate(-24deg);
}

.f1 {
  left: 9%;
  top: 18%;
}

.f2 {
  left: 45%;
  top: 14%;
  width: 24px;
  height: 10px;
  transform: rotate(29deg);
}

.f3 {
  left: 22%;
  bottom: 17%;
  width: 44px;
  height: 16px;
  transform: rotate(12deg);
}

.f4 {
  right: 16%;
  top: 30%;
  width: 28px;
  height: 12px;
  transform: rotate(-8deg);
}

.f5 {
  right: 34%;
  bottom: 18%;
  width: 38px;
  height: 13px;
  transform: rotate(20deg);
}

.hero-copy,
.hero-stage,
.source-copy,
.crunch-copy,
.ingredients-copy,
.info-heading,
.partners-inner {
  position: relative;
  z-index: 2;
}

.stamp {
  display: inline-block;
  margin: 0 0 26px;
  padding-bottom: 4px;
  color: var(--red);
  border-bottom: 5px solid var(--red);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
  transform: rotate(-7deg);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 820px;
  color: var(--green);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 6.7rem;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(239, 48, 40, 0.14);
}

h1 span {
  display: block;
}

h1 span:nth-child(1) {
  color: var(--red);
}

h1 span:nth-child(2) {
  color: var(--green);
}

h1 span:nth-child(3) {
  color: var(--ink);
  font-size: 5rem;
}

.hero-text {
  max-width: 550px;
  margin-bottom: 26px;
  color: rgba(37, 29, 23, 0.78);
  font-size: 1.22rem;
  line-height: 1.5;
}

.hero-actions,
.flavor-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.flavor-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.flavor-tab:hover,
.flavor-tab:focus-visible {
  transform: translateY(-2px);
  outline: 0;
  box-shadow: 0 7px 0 rgba(37, 29, 23, 0.18);
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.38);
}

.hero-stage {
  display: grid;
  place-items: center;
  min-height: 560px;
  isolation: isolate;
}

.banana-outline {
  position: absolute;
  width: min(84%, 620px);
  opacity: 0.34;
  transform: rotate(9deg) translate(7%, 0);
  mix-blend-mode: multiply;
}

.product-hero {
  position: relative;
  z-index: 2;
  width: min(72%, 440px);
  aspect-ratio: 0.74;
  object-fit: contain;
  transform: rotate(-5deg);
  filter: drop-shadow(0 24px 34px rgba(37, 29, 23, 0.25));
  mix-blend-mode: multiply;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: 9%;
  bottom: 13%;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  transform: rotate(4deg);
  box-shadow: 0 7px 0 rgba(37, 29, 23, 0.16);
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  color: var(--cream);
  background: var(--green);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 18px 34px;
  color: var(--cream);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 22px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: 2px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.product-section,
.info-section {
  padding-top: 84px;
  padding-bottom: 92px;
  background: var(--cream);
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--red);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.section-heading,
.info-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto 42px;
}

.section-heading h2,
.source-copy h2,
.crunch-copy h2,
.ingredients-copy h2,
.info-heading h2,
.partners-inner h2 {
  margin-bottom: 0;
  color: var(--green);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 4.3rem;
  line-height: 0.95;
}

.section-heading p,
.source-copy p,
.crunch-copy p,
.ingredients-copy p,
.partners-copy p {
  color: rgba(37, 29, 23, 0.72);
  font-size: 1.08rem;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.flavor-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 0.78fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 520px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--banana-soft);
  box-shadow: var(--shadow);
}

.flavor-media {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 38px;
  background:
    radial-gradient(circle at 22px 22px, rgba(49, 91, 40, 0.16) 0 3px, transparent 4px),
    var(--banana);
  background-size: 50px 50px, auto;
}

.flavor-media img {
  width: min(78%, 360px);
  aspect-ratio: 0.74;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(37, 29, 23, 0.22));
  mix-blend-mode: multiply;
}

.flavor-media img.layout-art {
  width: min(98%, 560px);
  aspect-ratio: 1.08;
}

.flavor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--green);
  color: var(--cream);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  text-transform: uppercase;
}

.flavor-copy h3 {
  margin-bottom: 16px;
  color: var(--cream);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 3.6rem;
  line-height: 0.9;
}

.flavor-copy p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 28px;
  color: rgba(255, 248, 220, 0.82);
  font-size: 1.06rem;
  line-height: 1.55;
}

.flavor-tab {
  min-height: 46px;
  color: var(--cream);
  background: transparent;
  border-color: rgba(255, 248, 220, 0.74);
}

.flavor-tab.active {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.claim-stack {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 14px;
}

.claim-pill {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  border: 2px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  background: var(--paper);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}

.claim-pill::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 14px;
  background: var(--orange);
  clip-path: polygon(50% 0, 61% 31%, 95% 15%, 78% 50%, 95% 85%, 61% 69%, 50% 100%, 39% 69%, 5% 85%, 22% 50%, 5% 15%, 39% 31%);
}

.source-section,
.crunch-section,
.ingredients-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 650px;
  padding: 0;
}

.source-photo,
.crunch-image,
.ingredient-photo {
  min-height: 650px;
}

.source-photo img,
.crunch-image img,
.ingredient-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.source-copy,
.crunch-copy,
.ingredients-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--paper);
}

.source-copy {
  background:
    linear-gradient(rgba(255, 248, 220, 0.82), rgba(255, 248, 220, 0.82)),
    var(--banana);
}

.source-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.source-stats div {
  min-height: 92px;
  padding: 16px;
  border: 2px solid rgba(49, 91, 40, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.source-stats dt {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.source-stats dd {
  margin: 0;
  color: var(--green);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.crunch-section {
  background: var(--green);
}

.crunch-copy {
  order: 2;
  color: var(--cream);
  background:
    radial-gradient(circle at 20px 20px, rgba(255, 232, 115, 0.2) 0 3px, transparent 4px),
    var(--green);
  background-size: 46px 46px, auto;
}

.crunch-copy .section-kicker {
  color: var(--orange);
}

.crunch-copy h2 {
  color: var(--cream);
}

.crunch-copy p {
  color: rgba(255, 248, 220, 0.8);
}

.crunch-image {
  order: 1;
}

.ingredients-section {
  background: var(--paper);
}

.ingredients-copy {
  background: var(--paper);
}

.ingredient-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.ingredient-list li {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-bottom: 2px solid rgba(107, 75, 50, 0.2);
  color: var(--brown);
  font-size: 1.25rem;
}

.ingredient-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 8px 0 0 var(--orange);
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: stretch;
}

.packaging-preview {
  overflow: hidden;
  min-height: 560px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--banana-soft);
}

.packaging-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-table {
  display: grid;
  align-content: center;
  border-block: 2px solid var(--green);
}

.product-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(160px, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 2px solid rgba(49, 91, 40, 0.2);
}

.product-table div:last-child {
  border-bottom: 0;
}

.product-table span {
  color: var(--brown);
  text-transform: uppercase;
}

.product-table strong {
  color: var(--green);
  font-family: "Chewy", "Nunito Sans", sans-serif;
  font-size: 1.42rem;
  line-height: 1;
}

.partners-section {
  padding-top: 86px;
  padding-bottom: 92px;
  color: var(--cream);
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px),
    linear-gradient(90deg, var(--green) 0 62%, #24431e 62% 100%);
  background-size: 40px 40px, auto;
}

.partners-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.64fr);
  gap: 42px;
  max-width: 1160px;
  margin: 0 auto;
}

.partners-inner h2,
.partners-section .section-kicker {
  color: var(--cream);
}

.partners-copy p {
  color: rgba(255, 248, 220, 0.78);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 48px;
  border-top: 2px solid rgba(37, 29, 23, 0.18);
  background: var(--banana-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--green);
}

.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

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

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  }

  h1 {
    font-size: 5.4rem;
  }

  h1 span:nth-child(3) {
    font-size: 4.1rem;
  }

  .section-heading h2,
  .source-copy h2,
  .crunch-copy h2,
  .ingredients-copy h2,
  .info-heading h2,
  .partners-inner h2 {
    font-size: 3.5rem;
  }

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

  .claim-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-stage {
    min-height: 480px;
  }

  .product-hero {
    width: min(60%, 360px);
  }

  .banana-outline {
    width: min(72%, 520px);
  }

  .source-section,
  .crunch-section,
  .ingredients-section,
  .section-heading,
  .info-heading,
  .partners-inner,
  .flavor-panel {
    grid-template-columns: 1fr;
  }

  .source-photo,
  .crunch-image,
  .ingredient-photo,
  .flavor-media {
    min-height: 420px;
  }

  .source-copy,
  .crunch-copy,
  .ingredients-copy {
    padding: 58px 40px;
  }

  .crunch-copy,
  .crunch-image {
    order: initial;
  }

  .source-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    flex-direction: row;
    align-items: center;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    width: auto;
    padding: 10px;
    border: 2px solid var(--green);
    border-radius: 8px;
    background: var(--banana-soft);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-band,
  .product-section,
  .info-section,
  .partners-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 30px;
    gap: 12px;
  }

  .brand-letter {
    font-size: 1.85rem;
  }

  .site-nav a {
    min-height: 34px;
    padding: 8px 6px;
    text-align: center;
  }

  h1 {
    font-size: 3.65rem;
    line-height: 0.86;
  }

  h1 span:nth-child(3) {
    font-size: 2.78rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-stage {
    min-height: 320px;
  }

  .product-hero {
    width: min(68%, 260px);
  }

  .banana-outline {
    width: min(72%, 330px);
  }

  .hero-badge {
    right: 2%;
    bottom: 8%;
    font-size: 1.05rem;
  }

  .section-heading h2,
  .source-copy h2,
  .crunch-copy h2,
  .ingredients-copy h2,
  .info-heading h2,
  .partners-inner h2 {
    font-size: 2.7rem;
  }

  .flavor-copy {
    padding: 34px 24px;
  }

  .flavor-copy h3 {
    font-size: 2.6rem;
  }

  .claim-stack {
    grid-template-columns: 1fr;
  }

  .source-copy,
  .crunch-copy,
  .ingredients-copy {
    padding: 46px 24px;
  }

  .info-layout {
    gap: 22px;
  }

  .packaging-preview {
    min-height: 420px;
  }

  .product-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }
}
