:root {
  --green: #126b13;
  --green-bright: #24970c;
  --green-dark: #064508;
  --orange: #ff850b;
  --orange-dark: #e36500;
  --red: #b5112d;
  --gold: #ffbd16;
  --ink: #08090b;
  --muted: #565c62;
  --soft: #f6faf4;
  --line: #e1e8df;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(13, 35, 16, 0.14);
  --radius: 8px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 8%, rgba(36, 151, 12, 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 42%, #ffffff 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(18, 107, 19, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 107, 19, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black 0, transparent 72%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 16px max(18px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(9, 37, 9, 0.06);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(210px, 21vw, 285px);
  min-width: 190px;
}

.logo img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #0e1511;
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  color: var(--white);
  background: linear-gradient(180deg, var(--green-bright), var(--green-dark));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(18, 107, 19, 0.22);
  font-weight: 900;
}

.nav-toggle {
  justify-self: end;
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  height: 2px;
  background: var(--ink);
}

.section,
.hero,
.stats-panel,
.site-footer {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  gap: 32px;
  min-height: calc(100vh - 88px);
  padding: 68px 0 28px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 11px 19px;
  color: var(--green);
  background: var(--white);
  border: 1.5px solid var(--green);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 10vw, 6.2rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--green);
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 7px;
  font-size: 1.14rem;
  line-height: 1.12;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 26px;
  color: #3e454b;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.product-tabs,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--green-bright), var(--green-dark));
  box-shadow: 0 16px 30px rgba(18, 107, 19, 0.24);
}

.button.ghost {
  color: var(--green);
  background: var(--white);
  border-color: var(--green);
}

.button.orange {
  color: var(--white);
  background: linear-gradient(180deg, #ff9b1d, var(--orange-dark));
  box-shadow: 0 16px 30px rgba(255, 133, 11, 0.24);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 660px;
  margin-top: 42px;
}

.benefit-row div {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
}

.benefit-row svg {
  width: 30px;
  height: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(18, 107, 19, 0.2);
}

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

.hero-machine-photo {
  width: min(100%, 440px);
  max-height: 650px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-stage::before {
  position: absolute;
  inset: 6% 0 8%;
  z-index: -3;
  content: "";
  background:
    radial-gradient(circle at 74% 44%, rgba(255, 133, 11, 0.17), transparent 28%),
    radial-gradient(circle at 48% 56%, rgba(18, 107, 19, 0.11), transparent 32%),
    linear-gradient(120deg, transparent 0 48%, rgba(18, 107, 19, 0.05) 48% 100%);
  border-radius: 40% 4% 4% 48%;
}

.water-splash {
  position: absolute;
  inset: 12% 0 16% 24%;
  z-index: -2;
  opacity: 0.7;
  background:
    radial-gradient(circle at 28% 34%, transparent 0 10px, rgba(117, 173, 187, 0.55) 11px 13px, transparent 14px),
    radial-gradient(circle at 64% 20%, transparent 0 7px, rgba(117, 173, 187, 0.45) 8px 10px, transparent 11px),
    radial-gradient(circle at 76% 58%, transparent 0 12px, rgba(117, 173, 187, 0.36) 13px 15px, transparent 16px),
    radial-gradient(circle at 44% 72%, transparent 0 8px, rgba(117, 173, 187, 0.4) 9px 11px, transparent 12px);
  filter: blur(0.1px);
}

.fruit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  box-shadow: inset -14px -18px 0 rgba(0, 0, 0, 0.08), 0 18px 34px rgba(0, 0, 0, 0.08);
}

.fruit-orange {
  top: 28px;
  right: 118px;
  width: 92px;
  height: 92px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(255, 255, 255, 0.72) 21% 23%, transparent 24%),
    conic-gradient(from 0deg, #ffb438, #ff7b10, #ffd46c, #ff7b10, #ffb438);
}

.fruit-lime {
  right: 38px;
  top: 240px;
  width: 132px;
  height: 132px;
  background:
    radial-gradient(circle at 35% 28%, #eaffc8 0 12%, transparent 13%),
    radial-gradient(circle, #9dd73d 0 58%, #5da51a 59%);
}

.fruit-berry {
  right: 82px;
  top: 174px;
  width: 46px;
  height: 54px;
  background: radial-gradient(circle at 32% 28%, #ffcad1 0 10%, transparent 11%), #d31933;
  border-radius: 55% 55% 48% 48%;
}

.vending-machine {
  position: absolute;
  left: 9%;
  top: 8px;
  width: min(48vw, 300px);
  min-width: 238px;
  height: 510px;
  padding: 30px 26px;
  color: var(--white);
  background: linear-gradient(90deg, #0a0d0b, #1b1b19 62%, #080908);
  border: 1px solid #2a2f2a;
  border-radius: 10px;
  box-shadow: 28px 28px 70px rgba(0, 0, 0, 0.28);
}

.vending-machine::after {
  position: absolute;
  right: -30px;
  top: 18px;
  bottom: 0;
  width: 32px;
  content: "";
  background: linear-gradient(90deg, #111, #77756e);
  border-radius: 0 10px 10px 0;
  transform: skewY(-7deg);
}

.machine-display {
  position: relative;
  height: 252px;
  margin-top: 16px;
  padding: 38px 18px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 26%, rgba(255, 133, 11, 0.55), transparent 18%),
    radial-gradient(circle at 32% 68%, rgba(36, 151, 12, 0.46), transparent 24%),
    linear-gradient(145deg, #0e4a16, #031006 68%);
  border: 8px solid #070807;
  border-radius: 8px;
}

.machine-display strong {
  display: block;
  max-width: 130px;
  font-size: 1.24rem;
  line-height: 1.03;
}

.machine-display small {
  display: inline-block;
  margin-top: 14px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--green-bright);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 900;
}

.screen-bottles {
  position: absolute;
  right: 16px;
  bottom: 18px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.screen-bottles span,
.screen-products i {
  display: block;
  height: 54px;
  border-radius: 5px 5px 9px 9px;
}

.machine-light {
  position: absolute;
  top: 74px;
  right: 18px;
  width: 14px;
  height: 128px;
  background: linear-gradient(180deg, #7cff8d, #0e6d24);
  border: 3px solid #111;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(80, 255, 110, 0.45);
}

.machine-keypad {
  position: absolute;
  right: 21px;
  top: 230px;
  width: 28px;
  height: 88px;
  background:
    radial-gradient(circle at 30% 20%, #78f08a 0 2px, transparent 3px),
    radial-gradient(circle at 70% 20%, #78f08a 0 2px, transparent 3px),
    radial-gradient(circle at 30% 40%, #78f08a 0 2px, transparent 3px),
    radial-gradient(circle at 70% 40%, #78f08a 0 2px, transparent 3px),
    radial-gradient(circle at 30% 60%, #78f08a 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, #78f08a 0 2px, transparent 3px),
    #1b2620;
  border: 2px solid #080908;
  border-radius: 6px;
}

.machine-slot {
  position: absolute;
  right: 58px;
  bottom: 52px;
  left: 54px;
  height: 62px;
  background: linear-gradient(180deg, #07120b, #223329);
  border: 8px solid #0a0b0a;
  border-radius: 8px;
  box-shadow: inset 0 -8px 0 rgba(36, 151, 12, 0.55);
}

.hero-bottles {
  position: absolute;
  right: 0;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.bottle {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 215px;
  color: var(--white);
  border-radius: 20px 20px 14px 14px;
  box-shadow: inset -10px 0 16px rgba(0, 0, 0, 0.16), 0 20px 35px rgba(0, 0, 0, 0.15);
}

.bottle::before {
  position: absolute;
  top: -29px;
  width: 54px;
  height: 34px;
  content: "";
  background: linear-gradient(#f5f0df, #d6d1c6);
  border-radius: 10px 10px 4px 4px;
}

.bottle::after {
  position: absolute;
  top: -1px;
  left: 10px;
  width: 11px;
  height: 82%;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.bottle span {
  position: relative;
  z-index: 1;
  max-width: 74px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.05;
}

.bottle.small {
  width: 66px;
  height: 150px;
}

.bottle.small span {
  font-size: 0.66rem;
}

.green,
.bottle.green {
  background: linear-gradient(180deg, #76a91d, #31690d);
}

.gold,
.bottle.gold {
  background: linear-gradient(180deg, #ffbd18, #f17e09);
}

.red,
.bottle.red {
  background: linear-gradient(180deg, #df1c3d, #871027);
}

.orange,
.bottle.orange {
  background: linear-gradient(180deg, #ff9b1d, #f05d07);
}

.yellow,
.bottle.yellow {
  background: linear-gradient(180deg, #ffd938, #f3a90e);
}

.stats-panel {
  display: grid;
  gap: 18px;
  margin-top: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(10, 28, 10, 0.08);
}

.stats-panel div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: center;
}

.stats-panel svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  color: var(--green);
}

.stats-panel strong {
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1;
}

.stats-panel span {
  font-size: 0.86rem;
  font-weight: 750;
}

.section {
  padding: 72px 0;
}

.product-shell {
  display: grid;
  gap: 18px;
}

.showcase-main {
  padding: 26px;
  background: linear-gradient(145deg, #ffffff, #f6faf4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(12, 37, 13, 0.08);
}

.section-heading {
  max-width: 760px;
}

.section-heading.compact {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-heading.compact h2 {
  margin-bottom: 5px;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.section-heading p,
.about-grid span,
.partnership-options span,
.faq-list p,
.location-card p,
.location-card dd,
.sustainability p,
.testimonial-grid blockquote,
.contact-card p {
  color: var(--muted);
}

.section-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-tabs {
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.product-tabs button {
  min-height: 36px;
  padding: 0 24px;
  color: #232a25;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
}

.product-tabs button.active {
  color: var(--white);
  background: linear-gradient(180deg, var(--green-bright), var(--green-dark));
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-card {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(13, 35, 16, 0.07);
}

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

.product-art {
  position: relative;
  display: grid;
  place-items: end center;
  height: 240px;
  margin-bottom: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f3f8f1);
  border-radius: var(--radius);
}

.product-art.image-art {
  place-items: center;
  background: #f8fbf6;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transition: transform 180ms ease;
}

.product-card:hover .product-photo {
  transform: scale(1.025);
}

.product-art .bottle {
  width: 64px;
  height: 142px;
  transform: translateY(8px);
}

.product-art .bottle span {
  font-size: 0.56rem;
}

.produce {
  position: absolute;
  inset: auto 10px 18px;
  height: 88px;
  opacity: 0.9;
}

.produce.leaves {
  background:
    radial-gradient(ellipse at 22% 70%, #2e8e1d 0 18%, transparent 19%),
    radial-gradient(ellipse at 38% 52%, #68b431 0 18%, transparent 19%),
    radial-gradient(ellipse at 73% 70%, #2e8e1d 0 18%, transparent 19%),
    radial-gradient(circle at 76% 54%, #b7d45a 0 20%, transparent 21%);
}

.produce.citrus {
  background:
    radial-gradient(circle at 22% 66%, #ffbc32 0 22%, transparent 23%),
    radial-gradient(circle at 78% 62%, #ff8a12 0 24%, transparent 25%),
    radial-gradient(ellipse at 58% 78%, #c68d34 0 15%, transparent 16%);
}

.produce.berries {
  background:
    radial-gradient(circle at 22% 70%, #c8102e 0 17%, transparent 18%),
    radial-gradient(circle at 46% 54%, #24366f 0 12%, transparent 13%),
    radial-gradient(circle at 72% 70%, #b5112d 0 20%, transparent 21%),
    radial-gradient(circle at 80% 40%, #f0b6c2 0 12%, transparent 13%);
}

.produce.tropical {
  background:
    radial-gradient(circle at 20% 68%, #ffd938 0 21%, transparent 22%),
    radial-gradient(circle at 70% 70%, #f5f2e9 0 22%, transparent 23%),
    radial-gradient(circle at 48% 46%, #ffd24e 0 15%, transparent 16%);
}

.product-card h3 {
  margin-bottom: 6px;
}

.product-card p {
  min-height: 45px;
  margin-bottom: 16px;
  color: #3d444a;
  font-size: 0.92rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
  align-items: center;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--green);
  background: #eef8ed;
  border: 1px solid rgba(18, 107, 19, 0.16);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.shot-promo {
  position: relative;
  display: grid;
  min-height: 380px;
  padding: 34px 28px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 133, 11, 0.34), transparent 24%),
    radial-gradient(circle at 18% 85%, rgba(36, 151, 12, 0.38), transparent 26%),
    linear-gradient(135deg, #06270d, #0f4d18 58%, #041307);
  border-radius: var(--radius);
}

.shot-promo::before,
.shot-promo::after {
  position: absolute;
  content: "";
  border-radius: 999px 0 999px 0;
  opacity: 0.55;
}

.shot-promo::before {
  right: 22px;
  top: 20px;
  width: 110px;
  height: 58px;
  background: #1e7c24;
  transform: rotate(-28deg);
}

.shot-promo::after {
  right: 104px;
  bottom: 64px;
  width: 94px;
  height: 48px;
  background: #2da330;
  transform: rotate(22deg);
}

.shot-promo:has(.promo-product-photo)::before,
.shot-promo:has(.promo-product-photo)::after {
  display: none;
}

.shot-promo:has(.promo-product-photo) > div {
  position: relative;
  z-index: 1;
  max-width: 230px;
}

.shot-promo h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 2.9rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.shot-promo p {
  position: relative;
  z-index: 1;
  color: #f1fff3;
  font-size: 1.16rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.shot-promo .button {
  position: relative;
  z-index: 1;
}

.promo-bottles {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.promo-product-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.72;
}

.shot-promo:has(.promo-product-photo) {
  background: linear-gradient(135deg, #06270d, #0f4d18 58%, #041307);
}

.tech-band {
  position: relative;
  display: grid;
  gap: 24px;
  overflow: hidden;
  padding: 44px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 133, 11, 0.17), transparent 24%),
    radial-gradient(circle at 74% 78%, rgba(18, 107, 19, 0.2), transparent 30%),
    linear-gradient(90deg, #f6faf4 0 38%, #eef7ec 64%, #dcebd8);
  border-radius: var(--radius);
}

.tech-copy {
  max-width: 410px;
}

.tech-copy p {
  color: #222a24;
}

.check-list {
  display: grid;
  gap: 7px;
  margin: 20px 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.96rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  content: "\2713";
  color: var(--white);
  background: var(--green-bright);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 950;
}

.touch-machine {
  position: relative;
  justify-self: center;
  width: min(100%, 300px);
  height: 430px;
  padding: 42px 48px;
  background: linear-gradient(90deg, #0c0d0c, #202421);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.touch-screen {
  height: 276px;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(180deg, #083411, #111);
  border: 8px solid #060706;
  border-radius: 8px;
}

.screen-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}

.touch-screen strong {
  display: block;
  margin-bottom: 14px;
}

.touch-screen button {
  width: 100%;
  min-height: 42px;
  color: var(--white);
  background: var(--green-bright);
  border: 0;
  border-radius: 6px;
  font-weight: 950;
}

.tech-bottle-rack {
  display: none;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  align-self: end;
  opacity: 0.96;
}

.tech-bottle-rack .bottle {
  width: 58px;
  height: 134px;
}

.tech-bottle-rack .bottle.small {
  width: 48px;
  height: 108px;
}

.tech-bottle-rack .bottle span {
  font-size: 0.52rem;
}

.steps-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps-card ol {
  display: grid;
  gap: 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-card li {
  position: relative;
  padding-left: 46px;
  counter-increment: steps;
}

.steps-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  content: counter(steps);
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.steps-card strong,
.steps-card span {
  display: block;
}

.steps-card span {
  color: #343b39;
  font-size: 0.86rem;
}

.about-grid,
.partnership-options,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

.about {
  display: grid;
  gap: 34px;
}

.about-hero,
.about-story,
.mission-vision,
.people-band {
  display: grid;
  gap: 28px;
}

.about-hero {
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(36, 151, 12, 0.12), transparent 26rem),
    linear-gradient(135deg, #fffdf8 0%, #ffffff 48%, #f5faf4 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(12, 37, 13, 0.08);
}

.about-hero-copy {
  padding: clamp(28px, 5vw, 52px);
}

.about-hero h2,
.story-copy h3,
.people-band h3 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.03;
}

.about-hero h2 span,
.values-block h2 span,
.people-band h3 span {
  color: var(--green);
}

.about-hero-copy > p,
.story-copy p,
.people-band p {
  color: #2d3430;
}

.about-proof {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-proof article,
.values-grid article,
.people-list article {
  display: grid;
  gap: 8px;
}

.about-proof article {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.about-proof svg,
.values-grid svg {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  color: var(--green);
  padding: 10px;
  border: 1px solid rgba(18, 107, 19, 0.25);
  border-radius: 50%;
}

.about-proof span,
.values-grid span,
.mission-vision p,
.people-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-hero-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 189, 22, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(18, 107, 19, 0.08), rgba(255, 255, 255, 0.1)),
    linear-gradient(90deg, #f3f8f1, #ffffff);
}

.about-hero-panel::before {
  position: absolute;
  right: 12%;
  bottom: -42px;
  width: min(54vw, 430px);
  height: 430px;
  content: "";
  background:
    radial-gradient(ellipse at 44% 58%, #1d721d 0 22%, transparent 23%),
    radial-gradient(ellipse at 68% 42%, #7fbf25 0 25%, transparent 26%),
    linear-gradient(90deg, transparent 0 45%, rgba(6, 69, 8, 0.24) 46% 48%, transparent 49%);
  border-radius: 58% 42% 56% 44%;
  opacity: 0.8;
  transform: rotate(-13deg);
}

.about-machine-card {
  position: absolute;
  left: clamp(28px, 10%, 72px);
  top: clamp(32px, 12%, 74px);
  width: min(62vw, 270px);
  min-height: 290px;
  padding: 28px 24px;
  color: var(--white);
  background: linear-gradient(180deg, #111816, #06120a);
  border: 8px solid #202b24;
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(6, 27, 8, 0.32);
}

.about-machine-card span,
.about-machine-card strong,
.about-machine-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.about-machine-card span {
  color: #dff8e1;
  font-weight: 900;
}

.about-machine-card strong {
  max-width: 160px;
  margin-top: 20px;
  font-size: 2rem;
  line-height: 1;
}

.about-machine-card small {
  margin-top: 70px;
  color: #9ee294;
  font-weight: 850;
}

.about-machine-card::after {
  position: absolute;
  right: 22px;
  top: 78px;
  width: 22px;
  height: 126px;
  content: "";
  background: linear-gradient(180deg, var(--green-bright), var(--green-dark));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(36, 151, 12, 0.6);
}

.about-story {
  align-items: center;
}

.story-visual {
  display: flex;
  min-height: 300px;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  padding: 34px 24px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 86%, rgba(255, 133, 11, 0.18), transparent 14rem),
    radial-gradient(circle at 88% 18%, rgba(36, 151, 12, 0.16), transparent 18rem),
    linear-gradient(135deg, #f9fcf7, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(12, 37, 13, 0.08);
}

.story-copy {
  max-width: 620px;
}

.story-copy h3,
.people-band h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.based-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--green);
}

.based-line svg {
  width: 22px;
  height: 22px;
}

.mission-vision {
  overflow: hidden;
  background: linear-gradient(135deg, #f3faf0, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mission-vision article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px;
}

.mission-vision article + article {
  border-top: 1px solid var(--line);
}

.round-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border: 1px solid rgba(18, 107, 19, 0.22);
  border-radius: 50%;
}

.round-icon svg {
  width: 34px;
  height: 34px;
}

.values-block {
  display: grid;
  gap: 24px;
}

.values-grid {
  display: grid;
  gap: 16px;
}

.values-grid article {
  justify-items: center;
  padding: 18px;
  text-align: center;
  border-right: 0;
}

.values-grid strong {
  font-size: 1.02rem;
}

.about-metrics {
  display: grid;
  gap: 1px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 69, 8, 0.94), rgba(3, 23, 7, 0.96)),
    radial-gradient(circle at 90% 20%, rgba(255, 133, 11, 0.24), transparent 18rem);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(12, 37, 13, 0.14);
}

.about-metrics div {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.about-metrics strong {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.about-metrics span {
  color: #dff8e1;
  font-weight: 800;
}

.people-band {
  align-items: center;
}

.people-list {
  display: grid;
  gap: 16px;
}

.people-list article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(13, 35, 16, 0.07);
}

.about-grid article,
.partnership-options article,
.testimonial-grid figure {
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(13, 35, 16, 0.06);
}

.about-grid strong,
.about-grid span,
.partnership-options strong,
.partnership-options span {
  display: block;
}

.about-grid strong,
.partnership-options strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.locator-layout,
.partnership-card,
.sustainability,
.contact-card,
.faqs {
  display: grid;
  gap: 26px;
}

.map-panel {
  min-height: 360px;
  padding: 24px;
  background: linear-gradient(145deg, #eef8ed, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(13, 35, 16, 0.06);
}

.map-shape {
  position: relative;
  min-height: 314px;
  background:
    radial-gradient(circle at 38% 38%, rgba(18, 107, 19, 0.14), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(255, 133, 11, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(18, 107, 19, 0.08), rgba(255, 133, 11, 0.08));
  clip-path: polygon(26% 6%, 68% 4%, 82% 21%, 91% 48%, 76% 86%, 42% 97%, 14% 79%, 8% 39%);
}

.map-pin {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 20px;
  height: 20px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(255, 133, 11, 0.32);
  cursor: pointer;
}

.map-pin.active {
  background: var(--green-bright);
}

.map-pin span {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: max-content;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.location-card {
  align-self: stretch;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.location-card div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.location-card dt {
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.location-card dd {
  margin: 4px 0 0;
}

.partnership-card,
.contact-card {
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 133, 11, 0.24), transparent 28%),
    linear-gradient(135deg, var(--green-dark), #08100b);
  border-radius: var(--radius);
}

.partnership-card p,
.contact-card p,
.partnership-card .section-label,
.contact-card .section-label {
  color: #dff8e1;
}

.partnership-options article {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.15);
}

.partnership-options span {
  color: #eaf3e9;
}

.sustainability {
  align-items: center;
}

.sustainability-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  min-height: 360px;
  padding: 80px 28px 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(36, 151, 12, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255, 133, 11, 0.22), transparent 24%),
    linear-gradient(145deg, #f8fcf7, #eaf6e8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sustainability-image::before,
.sustainability-image::after {
  position: absolute;
  content: "";
  border-radius: 999px 0 999px 0;
}

.sustainability-image::before {
  left: 24px;
  top: 28px;
  width: 124px;
  height: 62px;
  background: rgba(36, 151, 12, 0.28);
  transform: rotate(-24deg);
}

.sustainability-image::after {
  right: 38px;
  top: 54px;
  width: 104px;
  height: 52px;
  background: rgba(255, 133, 11, 0.26);
  transform: rotate(24deg);
}

.sustainability-image .bottle {
  width: 76px;
  height: 176px;
}

.sustainability-image .bottle span {
  font-size: 0.68rem;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.testimonial-grid blockquote {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.testimonial-grid figcaption {
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 35, 16, 0.04);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 14px 0 0;
}

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

.business-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--white);
  border-bottom: 2px solid var(--orange);
  font-size: 1.05rem;
  font-weight: 950;
}

.business-email svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #e9f6e8;
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(101, 231, 66, 0.38);
  border-color: #65e742;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #dff8e1 !important;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 34px 0 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer .logo {
  width: 240px;
}

.site-footer nav a {
  color: #243026;
  font-weight: 850;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 979px) {
  .site-nav {
    position: fixed;
    inset: 86px 18px auto;
    display: none;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: var(--soft);
  }

  .site-nav a::after {
    display: none;
  }
}

@media (min-width: 680px) {
  .stats-panel,
  .product-grid,
  .about-grid,
  .about-proof,
  .mission-vision,
  .people-band,
  .partnership-options,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .contact-card,
  .partnership-card,
  .locator-layout,
  .sustainability {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-vision article + article {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

@media (min-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav,
  .header-cta {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    padding-top: 46px;
  }

  .benefit-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-panel div:not(:last-child) {
    border-right: 1px solid var(--line);
  }

  .about-hero,
  .about-story {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  }

  .about-hero-panel {
    min-height: 520px;
  }

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

  .people-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-shell {
    grid-template-columns: minmax(0, 2.2fr) minmax(290px, 0.9fr);
  }

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

  .product-art {
    height: 280px;
  }

  .tech-band {
    grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 0.85fr) minmax(240px, 0.58fr);
    align-items: center;
  }

  .tech-bottle-rack {
    display: flex;
    grid-column: 2 / 3;
    margin-top: -92px;
    pointer-events: none;
  }

  .about-grid,
  .partnership-options,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faqs {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  }

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

  .site-footer nav {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo {
    width: 178px;
    min-width: 178px;
  }

  .logo img {
    height: 58px;
  }

  .hero,
  .section {
    padding-top: 52px;
  }

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

  .hero-machine-photo {
    width: min(100%, 350px);
    max-height: 520px;
  }

  .vending-machine {
    left: 0;
    width: 240px;
    min-width: 0;
    height: 430px;
    padding: 22px;
  }

  .machine-display {
    height: 210px;
  }

  .machine-slot {
    bottom: 36px;
  }

  .hero-bottles {
    right: -8px;
    gap: 7px;
  }

  .hero-bottles .bottle {
    width: 60px;
    height: 150px;
  }

  .hero-bottles .bottle.small {
    width: 48px;
    height: 112px;
  }

  .hero-bottles .bottle span {
    font-size: 0.54rem;
  }

  .fruit-lime {
    right: 0;
    width: 96px;
    height: 96px;
  }

  .fruit-orange {
    right: 70px;
    width: 68px;
    height: 68px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .product-tabs {
    width: 100%;
  }

  .product-tabs button {
    flex: 1;
    min-width: 0;
    padding-inline: 8px;
  }

  .showcase-main,
  .tech-band,
  .partnership-card,
  .contact-card {
    padding: 22px;
  }

}
