:root {
  --green-950: #063f22;
  --green-900: #07562c;
  --green-700: #08823d;
  --green-500: #5fbf2f;
  --lime-200: #e1f6bd;
  --cream: #fbfbef;
  --ink: #111812;
  --muted: #5a655d;
  --line: rgba(7, 86, 44, .16);
  --shadow: 0 26px 70px rgba(11, 79, 38, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  background: #fffef7;
}

.reveal.loaded {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(20px, 5vw, 76px);
  background: rgba(255, 255, 246, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 130, 61, .08);
}

.brand img {
  width: 100px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

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

.order-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.order-button {
  color: #fff;
  background: linear-gradient(135deg, #008840, #02652f);
  box-shadow: 0 14px 34px rgba(0, 111, 50, .22);
}

.order-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button:hover,
.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 111, 50, .18);
}

.button.primary,
.button.compact {
  color: #fff;
  background: var(--green-700);
}

.button.ghost {
  color: var(--green-900);
  border: 1px solid var(--green-700);
}

.button.dark {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .8);
}

.button.yellow {
  color: #123819;
  background: #f6de38;
}

.button.compact {
  min-height: 42px;
  border-radius: 13px;
}

.button span:empty,
.range-card > span:empty {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 28px;
  min-height: 820px;
  padding: 72px clamp(24px, 6vw, 92px) 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 206, 49, .28), transparent 20%),
    radial-gradient(circle at 72% 70%, rgba(8, 130, 61, .18), transparent 26%),
    radial-gradient(circle at 18% 16%, rgba(240, 255, 214, .88), transparent 28%),
    linear-gradient(120deg, #fffdf2 0%, #f8fce5 42%, #e7f8ce 100%);
}

.hero::before {
  position: absolute;
  inset: auto -12% -20% 35%;
  height: 430px;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 98, 47, .96), rgba(19, 146, 67, .72)),
    url("../img/rango-bg.jpg") center / cover no-repeat;
  opacity: .95;
  border-radius: 90px 0 0 0;
  transform: skewY(-6deg);
  transform-origin: right bottom;
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.12) 1px, transparent 1px),
    radial-gradient(circle at 80% 35%, rgba(255,255,255,.78) 0 16px, transparent 17px),
    radial-gradient(circle at 92% 50%, rgba(255,255,255,.42) 0 34px, transparent 35px);
  background-size: 76px 76px, 76px 76px, auto, auto;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(8, 130, 61, .13);
  border-radius: 50%;
  animation: slow-spin 18s linear infinite;
}

.hero-orbit-one {
  width: 420px;
  height: 420px;
  right: 12%;
  top: 18%;
}

.hero-orbit-two {
  width: 180px;
  height: 180px;
  right: 31%;
  bottom: 23%;
  animation-duration: 12s;
  animation-direction: reverse;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
}

.eyebrow,
.mini-label {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 900;
  line-height: .9;
  text-transform: uppercase;
}

.hero h1::first-line {
  color: var(--green-700);
}

.lead {
  max-width: 460px;
  margin: 28px 0 30px;
  color: #233429;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quality-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  color: var(--green-900);
}

.quality-note strong,
.quality-note small {
  display: block;
}

.quality-note small {
  margin-top: 2px;
  color: #314f38;
  font-weight: 600;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--green-700);
  border-radius: 50%;
  font-size: 24px;
}

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

.hero-family {
  perspective: 1100px;
}

.hero-platform {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: min(850px, 96%);
  height: 155px;
  transform: translateX(-50%) rotateX(64deg);
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.92), rgba(223, 255, 168, .46) 44%, rgba(5, 79, 35, .08) 72%, transparent 73%);
  border-radius: 50%;
  filter: blur(.2px);
  box-shadow: 0 34px 50px rgba(3, 65, 31, .18);
}

.family-product {
  position: absolute;
  left: 50%;
  bottom: 54px;
  filter: drop-shadow(0 34px 38px rgba(11, 67, 31, .22));
  transform-origin: center bottom;
  animation: family-float 5s ease-in-out infinite;
}

.family-main {
  z-index: 5;
  width: min(430px, 52%);
  transform: translateX(-50%) scale(1.08);
}

.family-veno {
  z-index: 3;
  width: min(310px, 38%);
  transform: translateX(-118%) rotate(-8deg);
  animation-delay: -.6s;
}

.family-rango {
  z-index: 2;
  width: min(330px, 39%);
  transform: translateX(-84%) translateY(42px) rotate(5deg);
  animation-delay: -1.2s;
}

.family-royal {
  z-index: 4;
  width: min(360px, 43%);
  transform: translateX(2%) translateY(18px) rotate(7deg);
  animation-delay: -.9s;
}

.family-anhar {
  z-index: 1;
  width: min(245px, 30%);
  transform: translateX(76%) translateY(84px) rotate(9deg);
  animation-delay: -1.7s;
}

.flavor-bubble {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  min-width: 88px;
  min-height: 88px;
  padding: 14px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(7, 86, 44, .72);
  box-shadow: 0 20px 40px rgba(4, 63, 34, .16);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  animation: fruit-drift 6s ease-in-out infinite;
}

.bubble-apple {
  left: 5%;
  top: 18%;
  background: rgba(222, 52, 39, .82);
}

.bubble-royal {
  right: 6%;
  top: 15%;
  background: rgba(247, 151, 32, .86);
  animation-delay: -.8s;
}

.bubble-water {
  right: 11%;
  bottom: 24%;
  background: rgba(37, 159, 179, .82);
  animation-delay: -1.5s;
}

.feature-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .8fr 1fr .9fr;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: -80px auto 0;
  padding: 28px 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.78), rgba(249,255,232,.74)),
    url("../img/stim-bg.jpg") center / cover;
  box-shadow: var(--shadow);
}

.panel-product {
  display: grid;
  place-items: center;
  min-height: 260px;
  border-right: 1px solid var(--line);
}

.panel-product img {
  max-height: 250px;
  filter: drop-shadow(0 20px 18px rgba(18, 71, 28, .16));
}

.panel-copy h2,
.section-heading h2,
.story-copy h2,
.wide-cta h2,
.distributor-cta h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
  color: #244132;
  font-weight: 700;
}

.clean-list li::before {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: var(--green-700);
  content: "";
  border: 1px solid var(--green-700);
  border-radius: 50%;
}

.panel-fruit {
  min-height: 245px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 34% 54%, rgba(255,255,255,.78), transparent 16%),
    url("../img/stim-apple-right.png") left bottom / 145px auto no-repeat,
    url("../img/stim-bg.jpg") center / cover;
}

.stamp {
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  margin: 20px 20px 0 auto;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border: 2px dashed rgba(255,255,255,.9);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  align-items: center;
  gap: 34px;
  margin-top: -40px;
  padding: 140px clamp(24px, 6vw, 92px) 88px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 55, 27, .96), rgba(2, 70, 37, .82)),
    url("../img/stim-bg.jpg") center / cover;
}

.mini-label.light {
  color: #d7ff70;
}

.story-copy h2 {
  color: #fff;
}

.story-copy h2::first-line {
  color: #fff;
}

.story-copy p {
  max-width: 480px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

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

.story-metrics article {
  min-height: 154px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease;
}

.story-metrics article:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.13);
}

.story-metrics strong {
  display: block;
  color: #dcff7c;
  font-size: 46px;
  font-weight: 900;
}

.story-metrics span {
  color: rgba(255,255,255,.88);
  font-weight: 800;
}

.why,
.product-range,
.product-showcase,
.where {
  padding: 70px clamp(24px, 6vw, 92px);
}

.why h2,
.where h2 {
  margin: 0 0 32px;
  text-align: center;
  color: #101911;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1150px;
  margin: 0 auto;
}

.why-grid article {
  min-height: 168px;
  padding: 8px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: transform .25s ease, color .25s ease;
}

.why-grid article:hover {
  transform: translateY(-8px);
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  color: var(--green-700);
  background: #edf7df;
  border-radius: 50%;
  font-size: 26px;
  font-size: 16px;
  font-weight: 900;
}

.why-grid h3,
.product-card h3,
.range-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.why-grid p,
.product-card p,
.range-card p {
  margin: 0;
  color: #445148;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.section-heading {
  margin: 0 auto 32px;
  text-align: center;
}

.range-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.range-card {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  padding: 36px 28px;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(28, 91, 43, .13);
  transition: transform .28s ease, box-shadow .28s ease;
}

.range-card:hover,
.product-card:hover,
.info-card:hover,
.location-card:hover,
.quote-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 58px rgba(7, 86, 44, .15);
}

.range-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 86, 35, .54), transparent 70%);
}

.range-card div,
.range-card span,
.range-card img {
  position: relative;
  z-index: 1;
}

.range-card h3 {
  max-width: 230px;
  color: #fff;
  font-size: 30px;
}

.range-card p {
  max-width: 250px;
  color: rgba(255,255,255,.88);
}

.range-card img {
  position: absolute;
  right: 12px;
  bottom: -12px;
  max-width: 52%;
  max-height: 210px;
  filter: drop-shadow(0 18px 22px rgba(0,0,0,.18));
  transition: transform .3s ease;
}

.range-card:hover img {
  transform: translateY(-8px) rotate(-3deg) scale(1.04);
}

.range-card span {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-900);
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.range-card.apple {
  background:
    linear-gradient(135deg, #75c52a, #0a7d36),
    url("../img/stim-bg.jpg") center / cover;
}

.range-card.tropical {
  background:
    linear-gradient(135deg, #ffc928, #ff7b24),
    url("../img/rango-bg.jpg") center / cover;
}

.range-card.water {
  background:
    linear-gradient(135deg, #75d9c1, #1aa0a5),
    url("../img/anhar-bg.jpg") center / cover;
}

.product-showcase {
  background: #f7fbef;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(8, 130, 61, .12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(7, 86, 44, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card img {
  max-height: 210px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 22px rgba(4, 52, 24, .13));
  transition: transform .3s ease;
}

.product-card:hover {
  border-color: rgba(8, 130, 61, .26);
}

.product-card:hover img {
  transform: translateY(-8px) scale(1.035);
}

.wide-cta {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
  align-items: center;
  min-height: 310px;
  padding: 48px clamp(24px, 6vw, 92px);
  background:
    linear-gradient(90deg, rgba(222, 247, 126, .45), rgba(244, 255, 213, .96)),
    url("../img/stim-bg.jpg") left center / cover no-repeat;
}

.wide-cta img {
  max-height: 300px;
  margin: -78px auto -42px;
  filter: drop-shadow(0 24px 28px rgba(5, 79, 35, .18));
}

.wide-cta p {
  color: #243d28;
  font-weight: 700;
}

.where {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 42px;
  align-items: center;
}

.where h2 {
  text-align: left;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quote-grid article {
  min-height: 146px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffef3;
  transition: transform .28s ease, box-shadow .28s ease;
}

.quote-grid strong {
  color: var(--green-700);
}

.quote-grid p {
  color: #28372d;
  font-weight: 700;
}

.quote-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.stores {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.store-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.store-logos span {
  padding: 12px 16px;
  color: var(--green-900);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
}

.distributor-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 36px;
  padding: 32px 38px;
  color: #fff;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 20%, rgba(111, 193, 42, .45), transparent 24%),
    linear-gradient(135deg, #007b35, #043f22);
  transition: transform .28s ease, box-shadow .28s ease;
}

.distributor-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(4, 63, 34, .18);
}

.distributor-cta h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
}

.distributor-cta p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.84);
  font-weight: 700;
}

.handshake {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: var(--green-700);
  background: #fff;
  border-radius: 50%;
  font-size: 34px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 42px;
  padding: 54px clamp(24px, 6vw, 92px) 42px;
  color: rgba(255,255,255,.88);
  background: #063f22;
}

.footer-credit {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 650;
}

.footer-credit a {
  display: inline;
  color: #dfff70;
  font-size: inherit;
  font-weight: 900;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .82fr);
  align-items: center;
  gap: 36px;
  min-height: 430px;
  padding: 78px clamp(24px, 6vw, 92px);
  background:
    radial-gradient(circle at 84% 20%, rgba(197, 239, 91, .7), transparent 28%),
    linear-gradient(110deg, #fffdf0, #e8f9c9);
  overflow: hidden;
}

.page-hero > * {
  min-width: 0;
}

.page-hero h1 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.page-hero p {
  max-width: 640px;
  color: #334439;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.6;
}

.page-hero img {
  max-height: 330px;
  margin: 0 auto;
  filter: drop-shadow(0 28px 32px rgba(5, 79, 35, .18));
}

.content-section {
  padding: 72px clamp(24px, 6vw, 92px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.text-block h2,
.form-panel h2,
.locations h2 {
  margin: 0 0 18px;
  color: var(--green-950);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.text-block p,
.text-block li {
  color: #3c4b41;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.info-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card,
.location-card,
.form-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 86, 44, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.info-card:hover,
.location-card:hover {
  border-color: rgba(8, 130, 61, .25);
}

.info-card h3,
.location-card h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card p,
.location-card p {
  margin: 0;
  color: #536159;
  font-weight: 650;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--green-950);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #132117;
  border: 1px solid rgba(7, 86, 44, .22);
  border-radius: 14px;
  background: #fffef7;
  font: inherit;
  font-weight: 650;
}

.field textarea {
  min-height: 132px;
  padding-top: 14px;
  resize: vertical;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.media-card {
  min-height: 290px;
  padding: 28px;
  display: grid;
  align-content: end;
  color: #fff;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3, 57, 28, .82), rgba(4, 92, 43, .42)), var(--bg) center / cover;
}

.media-card h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-card p {
  margin: 0;
  max-width: 460px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

.email-hero {
  background:
    linear-gradient(100deg, rgba(255,253,240,.96), rgba(232,249,201,.76)),
    url("../img/anhar-bg.jpg") center / cover no-repeat;
}

.email-panel {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.email-panel img {
  width: 110px;
  margin: 0;
}

.email-panel h2 {
  margin: 8px 0 0;
  color: var(--green-950);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.email-panel p,
.email-panel small {
  margin: 0;
  color: #3c4b41;
  font-weight: 700;
  line-height: 1.55;
}

.email-panel small {
  color: var(--muted);
  font-size: 13px;
}

.modal-open {
  overflow: hidden;
}

.email-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.email-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.email-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(220, 255, 124, .38), transparent 26%),
    rgba(2, 42, 21, .62);
  backdrop-filter: blur(18px);
}

.email-modal__card {
  position: relative;
  width: min(560px, 100%);
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(240, 253, 216, .76)),
    url("../img/anhar-bg.jpg") center / cover no-repeat;
  box-shadow: 0 38px 90px rgba(1, 34, 16, .38);
  transform: translateY(18px) scale(.96);
  transition: transform .24s ease;
}

.email-modal.is-open .email-modal__card {
  transform: translateY(0) scale(1);
}

.email-modal__card::before {
  position: absolute;
  inset: -120px -110px auto auto;
  width: 260px;
  height: 260px;
  content: "";
  background: rgba(223, 255, 112, .42);
  border-radius: 50%;
}

.email-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 38px;
  padding: 0 14px;
  color: var(--green-950);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.email-modal__brand,
.email-modal__card h2,
.email-modal__card p,
.email-modal__info,
.email-modal__actions {
  position: relative;
}

.email-modal__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.email-modal__brand img {
  width: 82px;
}

.email-modal__brand span {
  color: var(--green-900);
  font-weight: 900;
  text-transform: uppercase;
}

.email-modal__card h2 {
  max-width: 400px;
  margin: 0 0 14px;
  color: var(--green-950);
  font-size: clamp(34px, 7vw, 58px);
  line-height: .92;
  text-transform: uppercase;
}

.email-modal__card p {
  max-width: 440px;
  margin: 0 0 22px;
  color: #2e4034;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.62;
}

.email-modal__info {
  display: grid;
  gap: 4px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(7, 86, 44, .14);
  border-radius: 18px;
  background: rgba(255,255,255,.64);
}

.email-modal__info strong {
  color: var(--green-950);
  font-size: 13px;
  text-transform: uppercase;
}

.email-modal__info span {
  color: var(--green-700);
  font-weight: 900;
}

.email-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.email-modal__actions button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer img {
  width: 100px;
  margin-bottom: 16px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-brand p {
  max-width: 270px;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fruit-drift {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes family-float {
  0%, 100% { margin-bottom: 0; }
  50% { margin-bottom: 13px; }
}

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

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

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

  .main-nav {
    position: fixed;
    top: 82px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 14px;
    background: rgba(255, 255, 246, .96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(7, 86, 44, .16);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 13px;
  }

  .main-nav a:hover,
  .main-nav a.active {
    background: #eef8df;
  }

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero,
  .story-band,
  .wide-cta,
  .where {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .family-main {
    width: min(390px, 58%);
  }

  .family-veno {
    width: min(250px, 40%);
    transform: translateX(-108%) rotate(-8deg);
  }

  .family-rango {
    width: min(270px, 42%);
    transform: translateX(-82%) translateY(34px) rotate(5deg);
  }

  .family-royal {
    width: min(285px, 44%);
    transform: translateX(0) translateY(18px) rotate(7deg);
  }

  .family-anhar {
    width: min(190px, 31%);
    transform: translateX(72%) translateY(74px) rotate(9deg);
  }

  .feature-panel,
  .showcase-grid,
  .range-grid,
  .site-footer,
  .page-hero,
  .split-section,
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-fruit {
    grid-column: 1 / -1;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .why-grid article {
    border-right: 0;
  }

  .stores {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand img {
    width: 76px;
  }

  .order-button {
    min-height: 42px;
    padding: 0 14px;
  }

  .order-button span {
    display: none;
  }

  .main-nav {
    font-size: 13px;
  }

  .hero {
    padding: 42px 20px 92px;
  }

  .hero h1 {
    font-size: clamp(44px, 16vw, 64px);
  }

  .lead {
    font-size: 17px;
  }

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

  .hero-orbit,
  .flavor-bubble {
    display: none;
  }

  .hero-platform {
    bottom: 26px;
    height: 110px;
  }

  .family-product {
    bottom: 42px;
  }

  .family-main {
    width: 78%;
  }

  .family-veno {
    width: 46%;
    transform: translateX(-102%) translateY(26px) rotate(-7deg);
  }

  .family-rango {
    width: 50%;
    transform: translateX(-72%) translateY(72px) rotate(4deg);
  }

  .family-royal {
    width: 48%;
    transform: translateX(4%) translateY(52px) rotate(7deg);
  }

  .family-anhar {
    width: 32%;
    transform: translateX(80%) translateY(96px) rotate(8deg);
  }

  .feature-panel,
  .showcase-grid,
  .range-grid,
  .why-grid,
  .quote-grid,
  .story-metrics,
  .distributor-cta,
  .site-footer,
  .page-hero,
  .split-section,
  .info-grid,
  .location-grid,
  .form-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    width: calc(100% - 28px);
    padding: 22px;
    margin-top: -60px;
    border-radius: 22px;
  }

  .panel-product {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-band,
  .why,
  .product-range,
  .product-showcase,
  .where {
    padding: 54px 20px;
  }

  .range-card,
  .product-card {
    border-radius: 20px;
  }

  .wide-cta {
    padding: 46px 20px;
  }

  .wide-cta img {
    max-height: 240px;
    margin: -30px auto 0;
  }

  .distributor-cta {
    width: calc(100% - 28px);
    padding: 24px;
    text-align: center;
  }

  .handshake {
    margin: 0 auto;
  }

  .page-hero {
    min-height: auto;
    padding: 48px 20px;
  }

  .page-hero > * {
    max-width: calc(100vw - 40px);
  }

  .page-hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .content-section {
    padding: 50px 20px;
  }

  .field.full,
  .form-actions {
    grid-column: auto;
  }
}

/* v2 homepage header refresh inspired by supplied reference */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 22px clamp(28px, 5.5vw, 78px);
  background: rgba(255, 255, 241, .86);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(7, 86, 44, .06);
  box-shadow: 0 12px 34px rgba(7, 86, 44, .05);
}

.brand img { width: 104px; }

.main-nav {
  gap: clamp(22px, 3vw, 44px);
  color: #17251b;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a.active { color: var(--green-700); }

.main-nav a::after {
  height: 3px;
  bottom: -12px;
  border-radius: 99px;
}

.order-button {
  min-height: 50px;
  padding: 0 25px;
  border-radius: 14px;
  background: linear-gradient(135deg, #049e48 0%, #047333 100%);
  box-shadow: 0 14px 34px rgba(4, 115, 51, .22);
}

.order-button::after {
  content: "🛒";
  font-size: 17px;
  line-height: 1;
}

.hero-apple {
  grid-template-columns: minmax(440px, .86fr) minmax(620px, 1.14fr);
  min-height: 790px;
  padding: 98px clamp(28px, 5.5vw, 86px) 70px;
  background:
    radial-gradient(circle at 92% 44%, rgba(255,255,255,.72) 0 34px, transparent 35px),
    radial-gradient(circle at 86% 57%, rgba(255,255,255,.43) 0 58px, transparent 59px),
    radial-gradient(circle at 78% 26%, rgba(248, 237, 81, .34), transparent 22%),
    linear-gradient(110deg, #fffdf0 0%, #fbfde8 44%, #e9f8be 100%);
}

.hero-apple::before {
  inset: auto 0 -135px 0;
  height: 210px;
  border-radius: 0;
  transform: none;
  opacity: 1;
  background: linear-gradient(90deg, #03461f, #087536 54%, #03461f);
}

.hero-apple::after {
  background:
    radial-gradient(circle at 88% 20%, rgba(255,255,255,.72) 0 4px, transparent 5px),
    radial-gradient(circle at 83% 33%, rgba(255,255,255,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 45% 19%, rgba(8,130,61,.12) 0 1px, transparent 2px);
  background-size: auto;
}

.hero-apple .eyebrow {
  margin-bottom: 8px;
  color: #0a6b35;
  font-size: clamp(30px, 3.2vw, 45px);
  line-height: 1;
}

.hero-apple h1 {
  max-width: 690px;
  color: #09572c;
  font-size: clamp(60px, 6.7vw, 105px);
  line-height: .94;
  letter-spacing: -3px;
}

.hero-apple h1::first-line { color: #064d27; }

.hero-apple .lead {
  max-width: 455px;
  margin: 26px 0 32px;
  color: #1a241e;
  font-size: 21px;
  line-height: 1.45;
}

.hero-apple .button {
  min-width: 182px;
  min-height: 52px;
  border-radius: 16px;
}

.hero-apple .button.ghost {
  min-width: 245px;
  border: 1.5px solid rgba(6, 115, 54, .55);
  background: rgba(255,255,255,.55);
}

.leaf-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #0a793a;
  border: 2px solid #0a793a;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-28deg);
  font-size: 0;
}

.leaf-mark::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
  transform: rotate(25deg);
}

.apple-stage {
  min-height: 600px;
}

.apple-hero-product {
  position: absolute;
  z-index: 8;
  left: 47%;
  bottom: 20px;
  width: min(330px, 40vw);
  transform: translateX(-50%);
  filter: drop-shadow(0 32px 42px rgba(6, 63, 34, .28));
}

.apple-fruit {
  position: absolute;
  z-index: 7;
  filter: drop-shadow(0 22px 30px rgba(6, 63, 34, .17));
}

.apple-bag {
  right: 2%;
  bottom: 18px;
  width: min(420px, 46vw);
}

.apple-left {
  left: 2%;
  bottom: 10px;
  width: min(270px, 28vw);
}

.water-splash {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 230px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 52% 88%, rgba(255,255,255,.98) 0 4%, rgba(170,225,222,.65) 16%, transparent 33%),
    radial-gradient(circle at 45% 30%, rgba(233,252,255,.9) 0 7px, transparent 8px),
    radial-gradient(circle at 66% 18%, rgba(233,252,255,.9) 0 5px, transparent 6px),
    radial-gradient(circle at 74% 50%, rgba(233,252,255,.9) 0 8px, transparent 9px),
    radial-gradient(circle at 35% 58%, rgba(233,252,255,.9) 0 5px, transparent 6px),
    radial-gradient(ellipse at 50% 86%, rgba(255,255,255,.72) 0 7%, rgba(170,225,222,.38) 18%, transparent 34%);
  opacity: .9;
  filter: blur(.1px);
}

.splash-front { z-index: 9; opacity: .62; bottom: -10px; }

.soft-circle,
.floating-leaf {
  position: absolute;
  display: block;
  pointer-events: none;
}

.soft-circle {
  border-radius: 50%;
  background: rgba(255,255,255,.52);
}

.circle-one { right: 4%; top: 12%; width: 86px; height: 86px; }
.circle-two { right: -3%; top: 43%; width: 124px; height: 124px; }

.floating-leaf {
  z-index: 5;
  width: 70px;
  height: 30px;
  border-radius: 70% 0 70% 0;
  background: linear-gradient(135deg, #4fbc24, #0a732f);
  box-shadow: inset 12px 0 18px rgba(255,255,255,.24), 0 16px 28px rgba(8,86,44,.16);
}

.floating-leaf::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 14px;
  width: 44px;
  height: 1px;
  background: rgba(255,255,255,.65);
  transform: rotate(-18deg);
}

.leaf-one { left: 13%; top: 20%; transform: rotate(-18deg); }
.leaf-two { right: 2%; top: 17%; width: 95px; height: 42px; transform: rotate(-12deg); }

.apple-panel {
  position: relative;
  z-index: 5;
  grid-template-columns: .9fr .9fr 1.1fr;
  margin-top: -40px;
  border: 2px solid rgba(255,255,255,.9);
  background: linear-gradient(110deg, rgba(255,255,255,.7), rgba(238,250,217,.86));
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 80px rgba(9, 98, 47, .18);
}

.apple-panel .panel-product img { max-height: 300px; }

.apple-panel .panel-copy h2 {
  color: #087139;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.apple-panel .panel-copy h2 span {
  display: block;
  color: #0a6533;
  font-size: 24px;
  text-transform: none;
}

.star { color: #ffcd28; }

.apple-panel-fruit {
  position: relative;
  min-height: 250px;
}

.apple-panel-fruit img {
  position: absolute;
  right: -22px;
  bottom: -8px;
  width: min(430px, 100%);
}

.stamp {
  right: 20px;
  top: 20px;
}

@media (max-width: 1020px) {
  .hero-apple {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
  }
  .apple-stage { min-height: 520px; }
  .apple-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero-apple { padding-top: 44px; }
  .hero-apple .eyebrow { font-size: 26px; }
  .hero-apple h1 { font-size: 52px; letter-spacing: -1.5px; }
  .apple-stage { min-height: 440px; }
  .apple-hero-product { width: 240px; }
  .apple-bag { width: 310px; right: -36px; }
  .apple-left { width: 210px; left: -28px; }
  .hero-apple .button.ghost { min-width: 210px; }
}


/* Exact supplied homepage header replacement */
.reference-home-header {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #f8f7e8;
  overflow: hidden;
  line-height: 0;
}

.reference-home-header img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

.reference-home-header .hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  background: transparent;
  text-decoration: none;
}

.hotspot-logo { left: 2.7%; top: 3.1%; width: 8.6%; height: 6.8%; }
.hotspot-home { left: 22.5%; top: 4.1%; width: 5.1%; height: 4.8%; }
.hotspot-products { left: 28.0%; top: 4.1%; width: 8.0%; height: 4.8%; }
.hotspot-about { left: 37.3%; top: 4.1%; width: 8.6%; height: 4.8%; }
.hotspot-where { left: 47.4%; top: 4.1%; width: 8.8%; height: 4.8%; }
.hotspot-offers { left: 57.5%; top: 4.1%; width: 5.7%; height: 4.8%; }
.hotspot-distributors { left: 63.6%; top: 4.1%; width: 8.8%; height: 4.8%; }
.hotspot-contact { left: 73.1%; top: 4.1%; width: 6.0%; height: 4.8%; }
.hotspot-order { left: 84.0%; top: 2.8%; width: 11.3%; height: 5.9%; }
.hotspot-shop { left: 4.6%; top: 52.3%; width: 13.0%; height: 5.9%; }
.hotspot-explore { left: 18.6%; top: 52.3%; width: 17.8%; height: 5.9%; }
.hotspot-details { left: 37.4%; top: 95.0%; width: 11.0%; height: 4.0%; }

@media (max-width: 900px) {
  .reference-home-header {
    overflow-x: auto;
  }

  .reference-home-header img {
    min-width: 1100px;
  }

  .reference-home-header .hotspot {
    min-width: 1px;
  }
}

/* Rebuilt coded STIM hero, no full-image header */
.apple-nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  padding-top: 34px;
  padding-bottom: 18px;
}

.apple-nav .brand img {
  width: 116px;
  height: auto;
}

.apple-nav .main-nav {
  gap: clamp(24px, 3.1vw, 46px);
  color: #171d19;
  font-size: 15px;
  font-weight: 800;
}

.apple-nav .main-nav a.active,
.apple-nav .main-nav a:hover {
  color: #03843d;
}

.apple-nav .main-nav a::after {
  bottom: -11px;
  height: 3px;
  border-radius: 999px;
  background: #07833e;
}

.rebuilt-hero {
  min-height: 860px;
  padding-top: 190px;
  padding-bottom: 92px;
  overflow: hidden;
}

.rebuilt-hero .hero-copy {
  padding-top: 12px;
}

.rebuilt-hero .eyebrow {
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -.8px;
}

.rebuilt-hero h1 {
  font-size: clamp(66px, 7.5vw, 124px);
  letter-spacing: -4px;
}

.rebuilt-hero .lead {
  font-size: clamp(19px, 1.4vw, 24px);
  max-width: 480px;
}

.rebuilt-hero .button.primary {
  min-width: 210px;
  background: linear-gradient(135deg, #05a94d, #027234);
  box-shadow: 0 18px 38px rgba(1, 115, 52, .22);
}

.rebuilt-hero .button.ghost {
  min-width: 270px;
  color: #111812;
  border-color: rgba(4, 121, 56, .66);
  background: rgba(255, 255, 255, .54);
}

.rebuilt-hero .button span,
.rebuilt-panel .button span {
  display: inline-block;
  font-size: 25px;
  line-height: 1;
}

.rebuilt-hero .quality-note {
  margin-top: 54px;
}

.apple-stage {
  position: relative;
  min-height: 580px;
}

.apple-hero-set {
  position: absolute;
  z-index: 7;
  right: -42px;
  bottom: 0;
  width: min(890px, 66vw);
  max-width: none;
  filter: drop-shadow(0 32px 44px rgba(3, 63, 30, .24));
  animation: family-float 5.8s ease-in-out infinite;
}

.rebuilt-panel {
  margin-top: -82px;
  margin-bottom: 0;
  width: min(1320px, calc(100% - 96px));
  min-height: 318px;
  padding: 22px 42px;
}

.rebuilt-panel .panel-product {
  min-height: 290px;
}

.rebuilt-panel .panel-product img {
  max-height: 290px;
  width: auto;
  object-fit: contain;
}

.rebuilt-panel .panel-copy .mini-label {
  color: #222922;
  font-size: 14px;
  margin-bottom: 8px;
}

.rebuilt-panel .panel-copy h2 {
  color: #087139;
  font-size: clamp(30px, 3vw, 42px);
}

.rebuilt-panel .clean-list li {
  position: relative;
  padding-left: 40px;
}

.rebuilt-panel .clean-list li::before {
  position: absolute;
  left: 0;
  top: -2px;
  margin-right: 0;
}

.rebuilt-panel .apple-panel-fruit img {
  width: min(470px, 100%);
}

.rebuilt-panel .stamp {
  position: absolute;
  z-index: 4;
  right: 16px;
  top: 10px;
  width: 130px;
  height: 130px;
  color: #fff;
  border: 2px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(4px);
}

@media (max-width: 1180px) {
  .apple-nav {
    position: sticky;
    background: rgba(255, 255, 246, .9);
    backdrop-filter: blur(16px);
  }

  .rebuilt-hero {
    padding-top: 80px;
    grid-template-columns: 1fr;
  }

  .apple-hero-set {
    right: 50%;
    transform: translateX(50%);
    width: min(760px, 100%);
  }

  .apple-stage {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .apple-nav {
    grid-template-columns: auto auto;
  }

  .apple-nav .order-button {
    display: none;
  }

  .rebuilt-hero {
    padding-inline: 22px;
    padding-top: 54px;
  }

  .rebuilt-hero h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .rebuilt-hero .hero-actions {
    gap: 12px;
  }

  .rebuilt-hero .button,
  .rebuilt-hero .button.ghost {
    width: 100%;
    min-width: 0;
  }

  .apple-stage {
    min-height: 340px;
  }

  .apple-hero-set {
    width: 520px;
  }

  .rebuilt-panel {
    width: calc(100% - 28px);
    padding: 22px;
    margin-top: -34px;
  }
}

/* v2 product scale and water splash enhancement */
.rebuilt-hero {
  grid-template-columns: minmax(430px, .72fr) minmax(720px, 1.48fr);
  gap: clamp(20px, 2vw, 44px);
}

.rebuilt-hero .hero-copy {
  position: relative;
  z-index: 12;
}

.apple-stage {
  min-height: 660px;
  overflow: visible;
  isolation: isolate;
}

.apple-hero-set {
  width: min(1180px, 76vw);
  right: -150px;
  bottom: -10px;
  transform-origin: 62% 100%;
  filter: drop-shadow(0 42px 58px rgba(3, 63, 30, .30));
  animation: family-float-large 6s ease-in-out infinite;
}

.apple-stage::before {
  content: "";
  position: absolute;
  z-index: 5;
  left: 3%;
  right: -9%;
  bottom: 52px;
  height: 360px;
  pointer-events: none;
  background:
    radial-gradient(circle at 31% 55%, rgba(255,255,255,.95) 0 6px, rgba(151,219,221,.68) 7px 8px, transparent 9px),
    radial-gradient(circle at 40% 32%, rgba(255,255,255,.95) 0 5px, rgba(151,219,221,.68) 6px 7px, transparent 8px),
    radial-gradient(circle at 51% 18%, rgba(255,255,255,.95) 0 4px, rgba(151,219,221,.68) 5px 6px, transparent 7px),
    radial-gradient(circle at 65% 24%, rgba(255,255,255,.95) 0 6px, rgba(151,219,221,.68) 7px 8px, transparent 9px),
    radial-gradient(circle at 76% 44%, rgba(255,255,255,.9) 0 4px, rgba(151,219,221,.6) 5px 6px, transparent 7px),
    radial-gradient(circle at 86% 58%, rgba(255,255,255,.95) 0 5px, rgba(151,219,221,.68) 6px 7px, transparent 8px),
    linear-gradient(24deg, transparent 0 34%, rgba(93,196,203,.26) 35% 37%, rgba(255,255,255,.7) 38% 39%, transparent 40%),
    linear-gradient(156deg, transparent 0 31%, rgba(93,196,203,.28) 32% 34%, rgba(255,255,255,.72) 35% 36%, transparent 37%),
    radial-gradient(ellipse at 57% 88%, rgba(255,255,255,.86) 0 9%, rgba(128,214,213,.56) 19%, transparent 42%);
  opacity: .95;
  transform: rotate(-1deg);
  filter: blur(.15px);
}

.apple-stage::after {
  content: "";
  position: absolute;
  z-index: 9;
  left: 1%;
  right: -12%;
  bottom: 28px;
  height: 210px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 57% 90%, rgba(255,255,255,.92) 0 8%, rgba(149,220,219,.52) 19%, transparent 42%),
    linear-gradient(12deg, transparent 0 28%, rgba(255,255,255,.72) 29% 30%, rgba(91,190,198,.34) 31% 32%, transparent 33%),
    linear-gradient(170deg, transparent 0 31%, rgba(255,255,255,.74) 32% 33%, rgba(91,190,198,.34) 34% 35%, transparent 36%),
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.88) 0 5px, transparent 6px),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.85) 0 4px, transparent 5px),
    radial-gradient(circle at 84% 44%, rgba(255,255,255,.85) 0 7px, transparent 8px);
  opacity: .78;
}

.water-splash {
  z-index: 4;
  left: -2%;
  right: -14%;
  bottom: 16px;
  height: 300px;
  opacity: .95;
}

.splash-front {
  z-index: 10;
  bottom: -16px;
  opacity: .72;
}

@keyframes family-float-large {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.018); }
}

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

  .apple-stage {
    min-height: 560px;
  }

  .apple-hero-set {
    right: 50%;
    width: min(960px, 112%);
    transform: translateX(50%);
  }

  @keyframes family-float-large {
    0%, 100% { transform: translateX(50%) translateY(0) scale(1); }
    50% { transform: translateX(50%) translateY(-10px) scale(1.018); }
  }
}

@media (max-width: 760px) {
  .apple-stage {
    min-height: 390px;
  }

  .apple-hero-set {
    width: 680px;
    right: 42%;
    bottom: -4px;
  }

  .apple-stage::before {
    left: -28%;
    right: -36%;
    bottom: 26px;
    height: 250px;
  }

  .apple-stage::after,
  .water-splash {
    left: -30%;
    right: -40%;
  }
}


/* Final audit patch: header, hero product placement, and clean water effect */
.site-header.apple-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding: 26px clamp(24px, 5vw, 86px) 14px;
}

.site-header.apple-nav .brand {
  display: inline-flex;
  align-items: center;
  min-width: 118px;
}

.site-header.apple-nav .brand img {
  width: 108px;
  height: auto;
}

.site-header.apple-nav .main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  white-space: nowrap;
}

.site-header.apple-nav .order-button {
  justify-self: end;
  white-space: nowrap;
}

.hero.rebuilt-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, .78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(12px, 2.5vw, 48px);
  min-height: 820px;
  padding: 168px clamp(24px, 5vw, 86px) 88px;
}

.hero.rebuilt-hero .hero-copy {
  max-width: 680px;
}

.hero.rebuilt-hero h1 {
  margin: 0 0 22px;
  line-height: .9;
}

.hero.rebuilt-hero .lead {
  margin-bottom: 34px;
}

.hero.rebuilt-hero .hero-actions {
  align-items: center;
  flex-wrap: wrap;
}

.hero.rebuilt-hero .quality-note {
  margin-top: 42px;
}

.hero.rebuilt-hero .apple-stage {
  position: relative;
  min-height: clamp(520px, 48vw, 650px);
  width: 100%;
  overflow: visible;
  isolation: isolate;
}

.hero.rebuilt-hero .apple-hero-set {
  position: absolute;
  z-index: 8;
  right: clamp(-96px, -5vw, -24px);
  bottom: clamp(4px, 2vw, 28px);
  width: min(980px, 68vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 38px 54px rgba(3, 63, 30, .26));
}

.hero.rebuilt-hero .apple-stage::before,
.hero.rebuilt-hero .apple-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.hero.rebuilt-hero .apple-stage::before {
  z-index: 2;
  right: 2%;
  bottom: 26px;
  width: min(720px, 82%);
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.82) 0%, rgba(180,226,190,.34) 44%, rgba(180,226,190,0) 72%);
  filter: blur(8px);
}

.hero.rebuilt-hero .apple-stage::after {
  z-index: 9;
  right: 0;
  bottom: 70px;
  width: min(640px, 76%);
  height: 270px;
  background:
    radial-gradient(circle at 22% 70%, rgba(255,255,255,.9) 0 5px, transparent 6px),
    radial-gradient(circle at 34% 38%, rgba(255,255,255,.88) 0 4px, transparent 5px),
    radial-gradient(circle at 51% 25%, rgba(255,255,255,.84) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 42%, rgba(255,255,255,.86) 0 4px, transparent 5px),
    radial-gradient(ellipse at 52% 86%, rgba(255,255,255,.55) 0 9%, rgba(157,218,205,.26) 28%, transparent 58%);
  opacity: .9;
}

.hero.rebuilt-hero .water-splash {
  position: absolute;
  z-index: 4;
  right: -4%;
  bottom: 54px;
  width: min(720px, 82%);
  height: 300px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 62%, rgba(255,255,255,.9) 0 8px, rgba(181,225,217,.35) 9px 13px, transparent 14px),
    radial-gradient(circle at 36% 35%, rgba(255,255,255,.88) 0 6px, rgba(181,225,217,.28) 7px 11px, transparent 12px),
    radial-gradient(circle at 58% 22%, rgba(255,255,255,.78) 0 5px, rgba(181,225,217,.26) 6px 9px, transparent 10px),
    radial-gradient(circle at 78% 48%, rgba(255,255,255,.86) 0 7px, rgba(181,225,217,.30) 8px 12px, transparent 13px),
    radial-gradient(ellipse at 50% 88%, rgba(255,255,255,.72) 0 10%, rgba(127,206,195,.25) 28%, transparent 62%);
  filter: blur(.2px);
  opacity: .75;
}

.hero.rebuilt-hero .splash-front {
  z-index: 10;
  bottom: 30px;
  width: min(610px, 70%);
  height: 190px;
  opacity: .44;
}

@media (max-width: 1180px) {
  .site-header.apple-nav {
    position: sticky;
    min-height: 82px;
    padding: 18px 24px;
    background: rgba(255, 255, 246, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(8, 130, 61, .08);
  }

  .site-header.apple-nav .main-nav {
    justify-content: stretch;
    white-space: normal;
  }

  .hero.rebuilt-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 70px;
    text-align: center;
  }

  .hero.rebuilt-hero .hero-copy {
    margin-inline: auto;
  }

  .hero.rebuilt-hero .hero-actions,
  .hero.rebuilt-hero .quality-note {
    justify-content: center;
  }

  .hero.rebuilt-hero .apple-stage {
    min-height: 520px;
  }

  .hero.rebuilt-hero .apple-hero-set {
    right: 50%;
    bottom: 0;
    width: min(900px, 104vw);
    transform: translateX(50%);
  }

  .hero.rebuilt-hero .water-splash,
  .hero.rebuilt-hero .apple-stage::after {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 760px) {
  .site-header.apple-nav {
    grid-template-columns: auto auto;
    min-height: 72px;
    padding: 14px 18px;
  }

  .site-header.apple-nav .brand img {
    width: 82px;
  }

  .hero.rebuilt-hero {
    padding: 46px 20px 58px;
  }

  .hero.rebuilt-hero h1 {
    font-size: clamp(44px, 15vw, 58px);
    letter-spacing: -2px;
  }

  .hero.rebuilt-hero .eyebrow {
    font-size: 28px;
  }

  .hero.rebuilt-hero .apple-stage {
    min-height: 360px;
  }

  .hero.rebuilt-hero .apple-hero-set {
    width: 620px;
    right: 45%;
  }

  .hero.rebuilt-hero .water-splash,
  .hero.rebuilt-hero .apple-stage::after {
    width: 520px;
    right: 46%;
  }
}
