:root {
  --ink: #11231f;
  --forest: #092f27;
  --green: #0a9e51;
  --mint: #dff3e7;
  --cream: #f5f1e8;
  --paper: #fcfbf7;
  --line: rgba(17, 35, 31, 0.15);
  --white: #fff;
  --sans: "DM Sans", sans-serif;
  --display: "Playfair Display", Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--display);
  letter-spacing: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: #fff;
  padding: 0.75rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.section {
  padding: 120px max(5vw, 24px);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 94px;
  color: #fff;
  transition: 0.35s ease;
}
.site-header.scrolled {
  height: 76px;
  background: rgba(6, 35, 29, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.nav-wrap {
  height: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0 max(4vw, 22px);
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand {
  width: 160px;
  margin-right: auto;
}
.brand img {
  width: 100%;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.site-nav a {
  position: relative;
  opacity: 0.82;
}
.site-nav a:hover,
.site-nav a.active {
  opacity: 1;
}
.site-nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--green);
}
.nav-cta {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 11px 17px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s;
}
.nav-cta:hover {
  background: #fff;
  color: var(--forest);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px;
}
.hero {
  min-height: 820px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("../images/bg/banner-bg-01.webp") center/cover;
  transform: scale(1.03);
  animation: heroIn 1.5s ease both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(3, 20, 17, 0.9) 0%,
      rgba(3, 20, 17, 0.62) 48%,
      rgba(3, 20, 17, 0.12) 82%
    ),
    linear-gradient(0deg, rgba(3, 20, 17, 0.5), transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 90%);
  margin-left: max(7vw, 30px);
  padding-top: 55px;
}
.eyebrow {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}
.eyebrow.light {
  color: #7ce3a8;
}
.hero h1 {
  font: 500 clamp(62px, 8.2vw, 132px) / 0.91 var(--display);
  letter-spacing: -0.065em;
  margin: 0;
  max-width: 950px;
}
.hero h1 em {
  font-style: normal;
  color: #8fe4b2;
}
.hero-copy {
  font-size: 19px;
  line-height: 1.55;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  margin: 32px 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s;
}
.button-primary {
  background: var(--green);
  color: #fff;
}
.button-primary:hover {
  background: #0bb35d;
  transform: translateY(-2px);
}
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.button-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--forest);
}
.hero-meta {
  position: absolute;
  z-index: 2;
  right: max(5vw, 25px);
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  width: min(590px, 46vw);
}
.hero-meta div {
  padding: 20px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-meta div:last-child {
  border: 0;
}
.hero-meta strong,
.hero-meta span {
  display: block;
}
.hero-meta strong {
  font: 600 23px var(--display);
}
.hero-meta span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: max(2vw, 14px);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue span {
  width: 1px;
  height: 45px;
  background: rgba(255, 255, 255, 0.5);
}
.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--green);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 8vw;
  margin: 52px 0 92px;
}
.intro h2,
.section-heading h2,
.network h2 {
  font: 500 clamp(43px, 5.4vw, 78px) / 1.02 var(--display);
  letter-spacing: -0.055em;
  margin: 0;
}
.intro-text {
  align-self: end;
}
.intro-text p {
  font-size: 18px;
  color: #52635f;
  margin: 0 0 27px;
}
.text-link {
  display: inline-flex;
  gap: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 5px;
}
.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.value-strip article {
  padding: 42px 38px;
  border-right: 1px solid var(--line);
}
.value-strip article:last-child {
  border: 0;
}
.value-strip span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.value-strip h3 {
  font: 600 23px var(--display);
  margin: 38px 0 10px;
}
.value-strip p {
  color: #60706c;
  margin: 0;
  font-size: 14px;
}
.products {
  background: var(--cream);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 6vw;
  margin-bottom: 65px;
}
.section-heading > p {
  max-width: 430px;
  color: #60706c;
  margin: 0 0 7px;
}
.section-heading.compact {
  margin-bottom: 45px;
}
.product-editorial {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  grid-template-rows: 340px 340px;
  gap: 16px;
}
.product-card {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.product-card-main {
  grid-row: span 2;
}
.product-card-wide {
  grid-column: span 2;
}
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.product-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 24, 19, 0.78), transparent 60%);
}
.product-index {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.product-name {
  position: absolute;
  left: 28px;
  bottom: 25px;
  font: 600 clamp(21px, 2vw, 30px) var(--display);
  letter-spacing: -0.03em;
}
.product-name small {
  font: 600 10px var(--sans);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9de7bb;
  margin-bottom: 5px;
}
.product-arrow {
  position: absolute;
  right: 24px;
  bottom: 25px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.25s;
}
.product-card:hover img {
  transform: scale(1.055);
}
.product-card:hover .product-arrow {
  background: #fff;
  color: var(--forest);
  transform: rotate(45deg);
}
.range-list {
  margin-top: 65px;
  border-top: 1px solid rgba(17, 35, 31, 0.25);
}
.range-list a {
  display: grid;
  grid-template-columns: 65px 1fr 1fr 30px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid rgba(17, 35, 31, 0.2);
  transition: 0.25s;
}
.range-list span {
  font-size: 11px;
  color: #798681;
}
.range-list strong {
  font: 600 20px var(--display);
}
.range-list em {
  font-style: normal;
  color: #71807c;
  font-size: 13px;
}
.range-list b {
  font-size: 21px;
  font-weight: 400;
  transition: 0.25s;
}
.range-list a:hover {
  padding-left: 12px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.4);
}
.range-list a:hover b {
  transform: translateX(5px);
}
.promise {
  min-height: 720px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.promise-media {
  position: absolute;
  inset: 0;
  background: url("../images/16.jpg") center/cover;
}
.promise:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 27, 22, 0.91),
    rgba(4, 27, 22, 0.5) 65%,
    rgba(4, 27, 22, 0.15)
  );
}
.promise-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0;
}
.promise blockquote {
  font: 500 clamp(44px, 6vw, 82px) / 1.05 var(--display);
  letter-spacing: -0.05em;
  margin: 0 0 30px;
}
.promise-content > p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  margin-bottom: 30px;
}
.button-light {
  background: #fff;
  color: var(--forest);
}
.button-light:hover {
  background: var(--mint);
  transform: translateY(-2px);
}
.capabilities {
  background: var(--paper);
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.capability-grid article {
  padding: 38px 30px 45px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 300px;
}
.cap-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 23px;
}
.capability-grid h3 {
  font: 600 21px var(--display);
  margin: 65px 0 12px;
}
.capability-grid p {
  font-size: 14px;
  color: #667570;
  margin: 0;
}
.network {
  background: var(--forest);
  color: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: center;
  overflow: hidden;
}
.network-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  max-width: 580px;
  margin: 30px 0;
}
.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.market-tags span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 12px;
  border-radius: 30px;
}
.network-visual {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}
.globe-ring {
  position: absolute;
  border: 1px solid rgba(121, 230, 166, 0.24);
  border-radius: 50%;
}
.ring-one {
  width: 450px;
  height: 450px;
}
.ring-two {
  width: 330px;
  height: 330px;
  border-style: dashed;
  animation: spin 30s linear infinite;
}
.globe-core {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 80px rgba(15, 183, 91, 0.35);
  z-index: 2;
}
.globe-core img {
  width: 80px;
}
.route {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #82e6aa;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(130, 230, 170, 0.1);
}
.route-one {
  left: 18%;
  top: 24%;
}
.route-two {
  right: 12%;
  top: 43%;
}
.route-three {
  left: 24%;
  bottom: 18%;
}
.network-label {
  position: absolute;
  right: 0;
  bottom: 30px;
  border-left: 2px solid var(--green);
  padding-left: 15px;
}
.network-label strong,
.network-label small {
  display: block;
}
.network-label small {
  color: rgba(255, 255, 255, 0.55);
}
.cta {
  background: var(--green);
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6vw;
  align-items: end;
}
.cta h2 {
  font: 500 clamp(40px, 5vw, 72px) / 1.05 var(--display);
  letter-spacing: -0.05em;
  margin: 0;
}
.cta-actions {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 28px;
}
.cta .eyebrow {
  align-self: start;
  color: #d1f6e0;
}
.cta-mail {
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.footer {
  background: #051d18;
  color: #fff;
  padding: 78px max(5vw, 24px) 24px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 6vw;
  padding-bottom: 65px;
}
.footer-brand img {
  width: 180px;
  margin-bottom: 28px;
}
.footer-brand p,
.footer-col p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.footer-col h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #77dda2;
  margin: 0 0 15px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.footer-col a:hover {
  color: #8de3b1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes heroIn {
  from {
    opacity: 0.35;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}
@keyframes heroImageDrift {
  from {
    transform: translate3d(
        calc(var(--hero-shift-x) * 1px),
        calc(var(--hero-shift-y) * 1px),
        0
      )
      scale(1.035);
  }
  to {
    transform: translate3d(
        calc(var(--hero-shift-x) * 1px),
        calc(var(--hero-shift-y) * 1px),
        0
      )
      scale(1.01);
  }
}
@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes heroEmphasisIn {
  from {
    opacity: 0;
    transform: translateY(44px) scale(0.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes heroDotLoad {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }
  .nav-cta {
    display: none;
  }
  .hero-meta {
    width: 55vw;
  }
  .product-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 300px 300px;
  }
  .product-card-main {
    grid-column: span 2;
    grid-row: auto;
  }
  .product-card-wide {
    grid-column: span 2;
  }
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .section {
    padding: 82px 24px;
  }
  .site-header {
    height: 76px;
  }
  .brand {
    width: 130px;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--forest);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 70px 34px;
    transform: translateX(100%);
    transition: 0.35s ease;
    z-index: 101;
  }
  .site-nav.open {
    transform: none;
  }
  .site-nav a {
    font: 500 32px var(--display);
  }
  .site-nav a.active:after {
    bottom: -4px;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero {
    height: auto;
    min-height: 760px;
  }
  .hero-content {
    margin: 0 24px;
    width: auto;
    padding-top: 10px;
  }
  .hero h1 {
    font-size: clamp(57px, 16vw, 90px);
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-meta {
    left: 24px;
    right: 24px;
    bottom: 25px;
    width: auto;
  }
  .hero-meta div {
    padding: 13px 9px;
  }
  .hero-meta strong {
    font-size: 18px;
  }
  .hero-meta span {
    font-size: 9px;
  }
  .scroll-cue {
    display: none;
  }
  .intro-copy {
    grid-template-columns: 1fr;
    gap: 35px;
    margin: 38px 0 60px;
  }
  .value-strip {
    grid-template-columns: 1fr;
  }
  .value-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 30px;
  }
  .value-strip article:last-child {
    border: 0;
  }
  .value-strip h3 {
    margin-top: 22px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 25px;
  }
  .product-editorial {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 440px repeat(3, 300px);
  }
  .product-card-main,
  .product-card-wide {
    grid-column: auto;
  }
  .range-list a {
    grid-template-columns: 45px 1fr 25px;
  }
  .range-list em {
    display: none;
  }
  .promise {
    min-height: 650px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability-grid article {
    min-height: auto;
  }
  .capability-grid h3 {
    margin-top: 35px;
  }
  .network {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .network-visual {
    min-height: 380px;
  }
  .ring-one {
    width: 330px;
    height: 330px;
  }
  .ring-two {
    width: 240px;
    height: 240px;
  }
  .globe-core {
    width: 110px;
    height: 110px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    grid-column: auto;
    flex-wrap: wrap;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .hero-actions .button {
    width: 100%;
  }
  .hero-meta span {
    display: none;
  }
  .hero-meta div {
    text-align: center;
  }
  .product-editorial {
    grid-template-rows: 390px repeat(3, 260px);
  }
  .network-visual {
    transform: scale(0.85);
    margin: -30px;
  }
  .cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-media,
  .ring-two,
  .hero-slide.active::before,
  .hero-slide.active .eyebrow,
  .hero-slide.active h1,
  .hero-slide.active h1 em,
  .hero-slide.active .hero-copy,
  .hero-slide.active .button,
  .slider-controls button.active::after {
    animation: none;
  }
  .hero-slide::before {
    transform: scale(1.01);
    transition: none;
  }
  .hero-slide .eyebrow,
  .hero-slide h1,
  .hero-slide h1 em,
  .hero-slide .hero-copy,
  .hero-slide .button {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .slider-controls button.active::after {
    transform: scaleX(1);
  }
  .hero-progress span {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Complete-content homepage */
.header-phone {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}
.mobile-menu-details {
  display: none;
}
.hero-slider {
  display: block;
  min-height: clamp(680px, 100svh, 900px);
  background: #031712;
  isolation: isolate;
  touch-action: pan-y;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  background: #031712;
  --hero-shift-x: 0;
  --hero-shift-y: 0;
}
.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-slide::before {
  inset: 0;
  background: var(--hero-image) var(--hero-position, center) / cover no-repeat;
  filter: saturate(1.04) contrast(1.05);
  transform: translate3d(
      calc(var(--hero-shift-x) * 1px),
      calc(var(--hero-shift-y) * 1px),
      0
    )
    scale(1.015);
  transition: transform 1.1s ease, filter 1.1s ease;
  will-change: transform;
}
.hero-slide::after {
  z-index: 1;
  background:
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(90deg, rgba(2, 14, 12, 0.6) 0%, rgba(2, 14, 12, 0.42) 33%, rgba(2, 14, 12, 0.1) 72%),
    linear-gradient(0deg, rgba(2, 14, 12, 0.34) 0%, transparent 45%);
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide.active::before {
  animation: heroImageDrift 7s ease-out both;
}
.hero-slider.is-hovering .hero-slide.active::before {
  animation: none;
  filter: saturate(1.08) contrast(1.06);
  transform: translate3d(
      calc(var(--hero-shift-x) * 1px),
      calc(var(--hero-shift-y) * 1px),
      0
    )
    scale(1.035);
  transition: transform 0.18s ease-out, filter 0.25s ease;
}
.hero-slide .hero-content {
  padding-top: clamp(72px, 13vh, 126px);
  transform: translate3d(-22px, 36px, 0);
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-slide:not(.active) .hero-content {
  transform: translate3d(24px, 30px, 0);
  opacity: 0;
}
.hero-slide.active .hero-content {
  transform: none;
  opacity: 1;
  transition-delay: 0.12s;
}
.hero-slider h1 {
  font-family: var(--display);
  font-size: 118px;
  line-height: 0.91;
  letter-spacing: 0;
  text-wrap: balance;
  font-weight: 700;
}
.hero-slider h1 em {
  color: var(--accent, #8fe4b2);
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.hero-slide:nth-child(1) h1 {
  font-weight: 600;
}
.hero-slide:nth-child(2) h1 {
  font-weight: 700;
}
.hero-slide:nth-child(3) h1 {
  font-weight: 600;
}
.hero-slide .eyebrow,
.hero-slide h1,
.hero-slide h1 em,
.hero-slide .hero-copy,
.hero-slide .button {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(5px);
}
.hero-slide.active .eyebrow {
  animation: heroTextIn 0.72s 0.18s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-slide.active h1 {
  animation: heroTextIn 0.82s 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-slide.active h1 em {
  animation: heroEmphasisIn 0.78s 0.48s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-slide.active .hero-copy {
  animation: heroTextIn 0.76s 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-slide.active .button {
  animation: heroTextIn 0.72s 0.76s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-slider .eyebrow.light {
  color: var(--accent, #7ce3a8);
}
.hero-slider .button-primary {
  background: var(--accent-strong, var(--green));
  min-width: 172px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}
.hero-slider .button-primary:hover {
  background: var(--accent, #0bb35d);
  color: #06231d;
}
.slider-arrows {
  position: absolute;
  z-index: 6;
  right: max(5vw, 24px);
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}
.slider-arrow {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(3, 23, 18, 0.34);
  color: #fff;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(14px);
}
.slider-arrow:hover,
.slider-arrow:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--forest);
  transform: translateX(-3px);
}
.slider-arrow[data-slide-next]:hover,
.slider-arrow[data-slide-next]:focus-visible {
  transform: translateX(3px);
}
.slider-controls {
  position: absolute;
  z-index: 5;
  right: max(5vw, 24px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slider-controls button {
  position: relative;
  width: 44px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  overflow: hidden;
  transition: width 0.25s ease, background 0.25s ease;
}
.slider-controls button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff, var(--accent, #77dda2));
  transform: scaleX(0);
  transform-origin: left;
}
.slider-controls button.active {
  background: rgba(255, 255, 255, 0.28);
  width: 76px;
}
.slider-controls button.active::after {
  animation: heroDotLoad 6.2s linear both;
}
.hero-progress {
  position: absolute;
  z-index: 5;
  left: max(7vw, 30px);
  bottom: 42px;
  width: min(250px, 30vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}
.hero-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent, #7ce3a8), #fff);
  transition: width 0.12s linear;
}
.featured-strip {
  position: relative;
  z-index: 4;
  background: #071f1a;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(5vw, 24px);
}
.featured-strip > a {
  min-height: 190px;
  padding: 35px 3vw;
  display: grid;
  grid-template-columns: 110px 1fr 24px;
  gap: 22px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.featured-strip > a:last-child {
  border: 0;
}
.featured-strip img {
  width: 110px;
  height: 90px;
  object-fit: contain;
  filter: saturate(0.8);
}
.featured-strip h2 {
  font: 600 18px var(--display);
  margin: 0 0 7px;
}
.featured-strip p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.5;
  margin: 0;
}
.featured-strip > a > span {
  font-size: 20px;
  transition: 0.25s;
}
.featured-strip a:hover > span {
  transform: translate(4px, -4px);
  color: #78dfa4;
}
.about-premium {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(440px, 1.08fr);
  gap: 52px;
  align-items: start;
  min-height: 880px;
  padding-top: 108px;
  padding-bottom: 46px;
  color: var(--forest);
  background: #dfe7bf;
}
.about-parallax:before {
  display: none;
}
.about-bg,
.about-bg-softener {
  position: absolute;
  display: block;
  inset: -12% -4%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  will-change: transform;
}
.about-bg {
  background:
    linear-gradient(90deg, rgba(232, 243, 210, 0.08) 0%, rgba(255, 246, 217, 0.9) 53%, rgba(251, 234, 190, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 39, 32, 0.03) 0%, rgba(7, 39, 32, 0.08) 54%, rgba(5, 34, 27, 0.34) 100%),
    url("../images/bg/banner-bg-01.jpg") center / cover no-repeat;
}
.about-bg-softener {
  inset: 0;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  background:
    radial-gradient(circle at 1% 12%, rgba(32, 112, 50, 0.42), transparent 18%),
    radial-gradient(circle at 101% 5%, rgba(23, 120, 48, 0.36), transparent 13%),
    linear-gradient(180deg, rgba(255, 248, 221, 0.16) 0%, rgba(246, 237, 184, 0.24) 56%, rgba(6, 44, 30, 0.48) 100%);
}
.about-visual {
  position: relative;
  align-self: start;
  min-height: 0;
  display: flex;
  align-items: start;
  justify-content: center;
}
.about-image-frame {
  width: min(660px, 104%);
  margin-left: -42px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 28px 42px rgba(9, 36, 29, 0.22));
}
.about-image-frame img {
  width: 100%;
  transform: translateY(0);
}
.about-badge {
  position: absolute;
  right: -2px;
  bottom: 46px;
  width: 172px;
  height: 172px;
  padding: 42px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  display: grid;
  place-items: end center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
  background: linear-gradient(145deg, rgba(16, 143, 76, 0.95), rgba(8, 91, 65, 0.96));
  box-shadow: 0 22px 36px rgba(7, 51, 38, 0.24);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}
.about-badge:before {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, #fff 0 3px, transparent 4px),
    linear-gradient(#fff, #fff) center / 2px 28px no-repeat,
    linear-gradient(90deg, #fff, #fff) center / 28px 2px no-repeat;
  opacity: 0.9;
}
.about-copy {
  max-width: 800px;
  padding-top: 0;
}
.about-copy .eyebrow {
  margin-bottom: 18px;
  color: #064433;
}
.about-copy h2 {
  color: #073d2f;
  font: 500 92px / 0.95 var(--display);
  letter-spacing: 0;
  margin: 0 0 12px;
  white-space: nowrap;
}
.about-copy h3 {
  color: #0d452e;
  font: 600 28px / 1.18 var(--display);
  max-width: 760px;
  margin: 0 0 22px;
}
.about-copy > p {
  max-width: 780px;
  color: #243f37;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.8;
}
.about-copy .text-link {
  margin-top: 18px;
  color: #073d2f;
  border-bottom-color: #073d2f;
}
.purpose-grid {
  grid-column: 1/-1;
  width: min(100%, 1620px);
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.purpose-grid article {
  position: relative;
  min-height: 300px;
  padding: 34px 44px 42px;
  border: 1px solid rgba(196, 223, 168, 0.38);
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(140deg, rgba(3, 49, 37, 0.99), rgba(4, 59, 41, 0.98));
  box-shadow: 0 22px 44px rgba(3, 30, 23, 0.18);
  backdrop-filter: blur(14px);
}
.purpose-grid article:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 14% 8%, rgba(127, 205, 112, 0.12), transparent 30%);
}
.purpose-grid article + article {
  border-left: 1px solid rgba(196, 223, 168, 0.38);
}
.purpose-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 1em;
  height: 1em;
  font-size: 82px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14) 0 31%, transparent 32%),
    linear-gradient(145deg, rgba(112, 163, 70, 0.9), rgba(35, 100, 52, 0.9));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.purpose-icon > span,
.purpose-icon > span:before,
.purpose-icon > span:after {
  position: absolute;
  display: block;
}
.mission-icon .icon-target {
  left: 0.295em;
  top: 0.38em;
  width: 0.32em;
  height: 0.32em;
  border: 0.052em solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0.09em rgba(255, 255, 255, 0.16);
}
.mission-icon .icon-arrow {
  left: 0.49em;
  top: 0.14em;
  width: 0.44em;
  height: 0.44em;
  transform: rotate(-45deg);
  transform-origin: 0 50%;
}
.mission-icon .icon-arrow:before,
.mission-icon .icon-arrow:after {
  content: "";
}
.mission-icon .icon-arrow:before {
  left: 0;
  top: 0.2em;
  width: 0.38em;
  height: 0.045em;
  border-radius: 999px;
  background: #fff;
}
.mission-icon .icon-arrow:after {
  right: 0;
  top: 0.13em;
  width: 0.17em;
  height: 0.17em;
  border-top: 0.055em solid #fff;
  border-right: 0.055em solid #fff;
  transform: rotate(45deg);
}
.vision-icon .icon-eye {
  left: 0.18em;
  top: 0.35em;
  width: 0.64em;
  height: 0.3em;
  border: 0.052em solid #fff;
  border-radius: 50% / 68%;
}
.vision-icon .icon-pupil {
  left: 0.43em;
  top: 0.425em;
  width: 0.145em;
  height: 0.145em;
  border-radius: 50%;
  background: #fff;
}
.vision-icon .icon-dot {
  width: 0.055em;
  height: 0.055em;
  border-radius: 50%;
  background: #fff;
}
.vision-icon .dot-top {
  left: 0.472em;
  top: 0.16em;
}
.vision-icon .dot-right {
  right: 0.16em;
  top: 0.472em;
}
.vision-icon .dot-bottom {
  left: 0.472em;
  bottom: 0.16em;
}
.vision-icon .dot-left {
  left: 0.16em;
  top: 0.472em;
}
.purpose-grid > article > span {
  position: absolute;
  right: 40px;
  top: 34px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.16);
  font: 600 72px / 1 var(--display);
  letter-spacing: 0;
}
.purpose-grid h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  font: 600 42px / 1.12 var(--display);
  letter-spacing: 0;
  margin: 24px 0 14px;
}
.purpose-grid p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}
.all-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 330px;
  gap: 14px;
}
.product-tile {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0b2a23;
}
.product-tile.featured {
  grid-row: span 2;
}
.product-tile.wide {
  grid-column: span 2;
}
.product-tile:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 24, 19, 0.82), transparent 62%);
}
.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.product-tile:hover img {
  transform: scale(1.06);
}
.product-tile .product-number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 22px;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.product-tile strong {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 58px;
  bottom: 22px;
  font: 600 20px/1.2 var(--display);
}
.product-tile b {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 400;
  transition: 0.25s;
}
.product-tile:hover b {
  background: #fff;
  color: var(--forest);
  transform: rotate(45deg);
}
.why {
  background: var(--paper);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.why-grid article {
  position: relative;
  min-height: 380px;
  padding: 38px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.why-grid > article > span {
  position: absolute;
  right: 24px;
  top: 30px;
  color: #91a09b;
  font-size: 11px;
}
.why-grid h3 {
  font: 600 21px/1.3 var(--display);
  margin: 65px 0 14px;
}
.why-grid p {
  font-size: 14px;
  color: #687772;
  margin: 0;
}
.essence {
  height: 700px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}
.essence video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.essence-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(3, 25, 20, 0.68),
    rgba(3, 25, 20, 0.44)
  );
}
.essence-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 25px;
}
.essence h2 {
  font: 500 clamp(48px, 7vw, 95px) / 1 var(--display);
  letter-spacing: -0.055em;
  max-width: 1000px;
  margin: 0 auto;
}
.essence-cta {
  margin-top: 38px;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}
.testimonials {
  background: var(--cream);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-grid blockquote {
  margin: 0;
  background: #fff;
  min-height: 330px;
  padding: 38px;
  display: flex;
  flex-direction: column;
}
.testimonial-grid blockquote > span {
  font: 500 58px/1 var(--display);
  color: var(--green);
}
.testimonial-grid p {
  font: 500 23px/1.45 var(--display);
  letter-spacing: -0.025em;
  margin: 30px 0 auto;
}
.testimonial-grid footer {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 13px;
}
.presence {
  background: var(--forest);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 7vw;
  align-items: center;
}
.presence-copy h2 {
  font: 500 clamp(40px, 5.1vw, 72px) / 1.04 var(--display);
  letter-spacing: -0.055em;
  margin: 0 0 28px;
}
.presence-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}
.contact-card {
  background: #fff;
  color: var(--ink);
  padding: 45px;
}
.contact-card h2 {
  font: 500 43px var(--display);
  letter-spacing: -0.04em;
  margin: 0;
}
.contact-card > p:not(.eyebrow) {
  color: #687772;
  font-size: 13px;
}
.contact-card form {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}
.contact-card label span {
  position: absolute;
  left: -9999px;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cbd2cf;
  background: transparent;
  padding: 13px 0;
  color: var(--ink);
  font: 14px var(--sans);
  outline: none;
}
.contact-card textarea {
  height: 90px;
  resize: vertical;
}
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--green);
}
.contact-card .button {
  border: 0;
  margin-top: 10px;
  cursor: pointer;
}
.partners {
  background: #fff;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.partner-grid > div {
  min-height: 150px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 24px;
}
.partner-grid img {
  max-width: 125px;
  max-height: 75px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.25s;
}
.partner-grid > div:hover img {
  filter: none;
  opacity: 1;
}
.footer-brand h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #77dda2;
  margin: 28px 0 12px;
}
.social-links {
  display: flex;
  gap: 8px;
}
.social-links a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
}
.footer-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
}
.footer-products h3 {
  grid-column: 1/-1;
}
.footer-profile {
  margin-top: 18px;
  border-bottom: 1px solid #77dda2;
  padding-bottom: 4px;
}
@media (max-width: 1180px) {
  .hero-slider h1 {
    font-size: 96px;
  }
  .header-phone {
    display: none;
  }
  .featured-strip > a {
    grid-template-columns: 80px 1fr 20px;
    padding: 28px 2vw;
  }
  .featured-strip img {
    width: 80px;
  }
  .all-products {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .mobile-menu-details {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font: 400 12px/1.5 var(--sans);
    color: rgba(255, 255, 255, 0.6);
  }
  .mobile-menu-details p {
    max-width: 300px;
    margin: 0 0 5px;
  }
  .hero-slide .hero-content {
    width: min(620px, calc(100% - 48px));
    margin-left: 24px;
    padding-top: 92px;
  }
  .hero-slide h1 {
    font-size: 74px;
    line-height: 0.96;
  }
  .slider-arrows {
    top: auto;
    right: 24px;
    bottom: 54px;
    flex-direction: row;
    transform: none;
  }
  .slider-arrow {
    width: 44px;
    height: 44px;
  }
  .slider-controls {
    left: 24px;
    right: auto;
    bottom: 58px;
  }
  .hero-progress {
    left: 24px;
    right: 24px;
    bottom: 30px;
    width: auto;
  }
  .featured-strip {
    grid-template-columns: 1fr;
  }
  .featured-strip > a {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 26px 0;
  }
  .about-premium {
    grid-template-columns: 1fr;
  }
  .about-image-frame {
    min-height: 430px;
  }
  .about-badge {
    right: 5px;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
  }
  .purpose-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .all-products {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 300px;
  }
  .product-tile.featured {
    grid-row: span 1;
  }
  .product-tile.wide {
    grid-column: span 2;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-grid article {
    min-height: auto;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .presence {
    grid-template-columns: 1fr;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-products {
    display: flex;
  }
  .footer-products h3 {
    grid-column: auto;
  }
}
@media (max-width: 520px) {
  .all-products {
    grid-template-columns: 1fr;
  }
  .product-tile.wide {
    grid-column: auto;
  }
  .about-image-frame {
    padding: 20px;
  }
  .about-badge {
    width: 120px;
    height: 120px;
  }
  .contact-card {
    padding: 28px 22px;
  }
  .partner-grid > div {
    min-height: 120px;
  }
  .slider-controls {
    left: 24px;
    right: auto;
    bottom: 34px;
    gap: 9px;
  }
  .slider-controls button {
    width: 32px;
    height: 5px;
  }
  .slider-controls button.active {
    width: 52px;
  }
  .slider-arrows {
    right: 22px;
    bottom: 74px;
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .hero-slide .hero-copy {
    max-width: 320px;
    font-size: 16px;
    margin: 24px 0;
  }
  .hero-slide h1 {
    font-size: 52px;
    line-height: 1;
  }
  .hero-progress {
    left: 24px;
    right: 24px;
    bottom: 18px;
  }
  .hero-slider .button-primary {
    min-width: 154px;
  }
  .featured-strip > a {
    grid-template-columns: 74px 1fr 20px;
  }
}
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 70px;
}
.footer-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: saturate(0.75);
  opacity: 0.85;
}
.mobile-menu-details h3 {
  font: 600 11px var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #78dfa4;
  margin: 10px 0 0;
}
@media (max-width: 520px) {
  .footer-gallery {
    grid-template-columns: repeat(5, 120px);
    overflow-x: auto;
  }
  .footer-gallery img {
    height: 110px;
  }
}

/* 2026 refinement: purpose, products, advantages and footer */
#purpose,
#products,
#why-choose-us,
#testimonials,
#partners,
#contact-footer {
  scroll-margin-top: 92px;
}
.purpose-grid {
  position: relative;
  margin-top: 34px;
  padding: 0;
  gap: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.purpose-grid:before {
  content: none;
}
.purpose-grid article {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: 34px 44px 42px;
  border: 1px solid rgba(196, 223, 168, 0.38);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(3, 49, 37, 0.99), rgba(4, 59, 41, 0.98));
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
}
.purpose-grid article + article {
  border-left: 1px solid rgba(196, 223, 168, 0.38);
}
.purpose-grid article:hover {
  background: linear-gradient(140deg, rgba(4, 61, 42, 0.99), rgba(4, 48, 36, 0.98));
  transform: translateY(-2px);
}
.purpose-grid article:before {
  content: none;
}
.purpose-grid > article > span {
  position: absolute;
  right: 40px;
  top: 34px;
  color: rgba(255, 255, 255, 0.16);
  font: 600 72px/1 var(--display);
  letter-spacing: 0;
}
.purpose-grid h3 {
  margin: 24px 0 14px;
  color: #fff;
  font: 600 42px/1.12 var(--display);
  letter-spacing: 0;
}
.purpose-grid p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.75;
}

#products {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 13%, rgba(93, 129, 82, 0.14), transparent 14%),
    radial-gradient(circle at 94% 19%, rgba(177, 190, 151, 0.34), transparent 25%),
    linear-gradient(135deg, #f7f7ed 0%, #eef3e7 48%, #f8f7ec 100%);
}
#products:before,
#products:after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
#products:before {
  left: -95px;
  top: -72px;
  width: 250px;
  height: 340px;
  border-radius: 48% 52% 60% 40%;
  background: rgba(83, 115, 73, 0.15);
  transform: rotate(24deg);
}
#products:after {
  right: -120px;
  bottom: -95px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(111, 143, 99, 0.18);
  border-radius: 50%;
}
#products .food-parallax,
#products .section-heading,
#products .all-products {
  position: relative;
  z-index: 1;
}
#products .section-heading {
  max-width: 1180px;
  margin: 0 auto 46px;
  align-items: center;
}
#products .section-heading h2 {
  position: relative;
  color: #143820;
  font-size: clamp(54px, 6.4vw, 88px);
  line-height: 0.95;
}
#products .section-heading h2:after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -16px;
  width: min(230px, 42vw);
  height: 2px;
  background: linear-gradient(90deg, #d1aa50 78%, transparent 78%);
}
#products .section-heading > p {
  max-width: 330px;
  padding-left: 36px;
  border-left: 1px solid rgba(21, 56, 32, 0.18);
  color: #365343;
  font-size: 16px;
  line-height: 1.65;
}
#products .eyebrow {
  color: #60784d;
}
.all-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: auto;
  gap: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.all-products .product-tile:nth-child(n),
.product-tile.featured,
.product-tile.wide {
  grid-column: auto;
  grid-row: auto;
}
.all-products .product-tile:nth-child(11) {
  grid-column: 1/-1;
  justify-self: center;
  width: min(640px, 100%);
}
.product-tile {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 340px minmax(72px, auto);
  align-items: end;
  row-gap: 0;
  min-height: 412px;
  padding: 0;
  overflow: hidden;
  color: #143820;
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.product-tile:after {
  display: none;
}
.product-tile:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}
.product-tile img {
  position: static;
  z-index: 1;
  grid-column: 1/-1;
  grid-row: 1;
  width: 100%;
  height: 340px;
  padding: 0;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
  transform: none;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.product-tile:hover img {
  transform: translateY(-4px);
  filter: none;
}
.product-tile .product-number {
  display: none;
}
.product-tile strong {
  position: static;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
  display: block;
  justify-self: center;
  max-width: 80%;
  padding: 0 24px;
  margin-bottom: 24px;
  color: #153820;
  font: 500 clamp(22px, 1.9vw, 30px) / 1.08 var(--display);
  text-align: center;
}
.product-tile b {
  display: none;
}
.product-tile b:before {
  content: "";
  width: 13px;
  height: 9px;
  border: 1.5px solid #fff;
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 100% 0;
  transform: rotate(-38deg);
}
.product-tile b:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 1.5px;
  background: #fff;
  transform: rotate(-42deg);
}
.product-tile:hover b {
  background: #b88e32;
  transform: rotate(10deg) scale(1.08);
}

.why {
  position: relative;
  padding: 30px max(3.75vw, 28px) 62px;
  background:
    radial-gradient(circle at 78% 8%, rgba(221, 200, 145, 0.28), transparent 24%),
    linear-gradient(180deg, #fbf8f0 0%, #f7f3ea 100%);
  overflow: hidden;
}
.why:before,
.why:after {
  content: none;
}
.why .section-heading,
.why-layout,
.why-grid {
  position: relative;
  z-index: 1;
}
.why .section-heading {
  display: block;
  max-width: 1776px;
  margin: 0 auto 30px;
}
.why .eyebrow {
  margin-bottom: 31px;
  color: #0c6238;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.why .eyebrow:after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 13px;
  background: #dfb756;
}
.why .section-heading h2 {
  color: #092f27;
  font-size: 94px;
  line-height: 0.9;
  letter-spacing: 0;
}
.why-layout {
  display: grid;
  grid-template-columns: minmax(480px, 0.95fr) minmax(650px, 1fr);
  gap: 44px;
  align-items: stretch;
  max-width: 1776px;
  margin: 0 auto;
}
.why-showcase {
  min-height: 584px;
  margin: 17px 0 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(64, 51, 21, 0.14);
}
.why-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 32px;
  border: 0;
}
.why-grid article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-content: center;
  min-height: 288px;
  padding: 20px;
  border: 1px solid rgba(223, 207, 164, 0.78);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 253, 0.93), rgba(244, 250, 245, 0.86));
  box-shadow: 0 18px 48px rgba(21, 45, 35, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 158, 81, 0.26);
  box-shadow: 0 24px 58px rgba(21, 45, 35, 0.1);
}
.why-grid img {
  grid-row: 1/3;
  width: 92px;
  height: 92px;
  padding: 23px;
  border: 1px solid rgba(207, 199, 139, 0.58);
  border-radius: 50%;
  background: linear-gradient(145deg, #eef6dc, #fbf9e9);
  box-shadow: 0 10px 17px rgba(51, 69, 28, 0.18);
  object-fit: contain;
}
.why-grid > article > span {
  right: 28px;
  top: 25px;
  color: rgba(9, 47, 39, 0.22);
  font: 600 40px/1 var(--display);
  letter-spacing: 0;
}
.why-grid h3 {
  grid-column: 2;
  margin: 3px 56px 0 0;
  color: #092f27;
  font: 600 20px/1.15 var(--display);
  letter-spacing: 0;
}
.why-grid h3:after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 22px;
  background: #0a9e51;
}
.why-grid p {
  grid-column: 2;
  max-width: 340px;
  margin: 24px 0 0;
  color: #646f6a;
  font-size: 15.5px;
  line-height: 1.5;
}

.footer {
  padding: 0 max(5vw, 24px) 24px;
  background: #041f1a;
}
.footer-gallery {
  max-width: 1600px;
  margin: 0 auto 74px;
  transform: translateY(-1px);
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-gallery img {
  height: 125px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  filter: saturate(0.6) brightness(0.72);
  opacity: 1;
  transition: filter 0.3s ease;
}
.footer-gallery img:hover {
  filter: saturate(1) brightness(0.95);
}
.footer-main {
  max-width: 1600px;
  margin: 0 auto;
  grid-template-columns: 1.12fr 1.28fr 0.9fr;
  gap: 0;
  padding-bottom: 72px;
}
.footer-brand {
  padding: 0 7vw 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img {
  width: 190px;
  margin-bottom: 30px;
}
.footer-brand p {
  max-width: 490px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.75;
}
.footer-products {
  padding: 0 5vw;
  gap: 8px 0px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-col:last-child {
  margin-left: 4vw;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}
.footer-col h3,
.footer-brand h3 {
  position: relative;
  margin-bottom: 20px;
  color: #69df9b;
}
.footer-col h3:after,
.footer-brand h3:after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: #35bd70;
}
.footer-col a {
  line-height: 1.45;
}
.footer-products a {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 24px;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.025);
  transition: 0.25s;
}
.social-links a:hover {
  border-color: #69df9b;
  background: #69df9b;
  color: #05231d;
}

@media (max-width: 1180px) {
  #products .section-heading,
  #products .all-products {
    max-width: 960px;
  }
  .all-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 14px;
  }
  .all-products .product-tile:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
  .all-products .product-tile:last-child {
    grid-column: 1/3;
    justify-self: center;
    width: min(620px, 100%);
  }
  .product-tile {
    grid-template-columns: 1fr;
    grid-template-rows: 310px minmax(70px, auto);
    min-height: 380px;
    padding: 0;
  }
  .product-tile strong {
    max-width: 84%;
    padding: 0 24px;
  }
  .product-tile img {
    height: 310px;
    padding-inline: 0;
  }
  .why {
    padding: 90px 28px;
  }
  .why .section-heading,
  .why-layout {
    max-width: 960px;
  }
  .why .section-heading h2 {
    font-size: 76px;
  }
  .why-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-showcase {
    min-height: 0;
    margin-top: 0;
    aspect-ratio: 844 / 584;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid article {
    min-height: 270px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    padding-right: 5vw;
  }
  .footer-products {
    padding-right: 0;
    border-right: 0;
  }
  .footer-col:last-child {
    grid-column: 1/-1;
    margin: 45px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    column-gap: 26px;
  }
  .footer-col:last-child h3 {
    margin: 0;
  }
  .footer-col:last-child .footer-profile {
    margin: 0;
  }
}
@media (max-width: 820px) {
  .purpose-grid {
    margin-top: 50px;
    padding: 12px;
    gap: 12px;
  }
  .purpose-grid article {
    min-height: auto;
    padding: 42px 30px;
  }
  .purpose-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
  .purpose-grid article:before {
    margin-bottom: 38px;
  }
  .purpose-grid > article > span {
    right: 26px;
    top: 28px;
    font-size: 42px;
  }
  #products {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  #products .section-heading {
    display: block;
    margin-bottom: 42px;
  }
  #products .section-heading > p {
    max-width: 520px;
    margin-top: 32px;
    padding-left: 22px;
  }
  .all-products {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .all-products .product-tile:nth-child(n),
  .all-products .product-tile:last-child {
    grid-column: auto;
    width: 100%;
  }
  .product-tile {
    grid-template-columns: 1fr;
    grid-template-rows: 300px minmax(70px, auto);
    min-height: 370px;
  }
  .why {
    padding: 82px 24px;
  }
  .why .section-heading {
    margin-bottom: 26px;
  }
  .why .section-heading h2 {
    font-size: 62px;
  }
  .why-layout {
    gap: 22px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .why-grid article {
    min-height: auto;
    padding: 38px 30px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand,
  .footer-products {
    padding: 0 0 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-products {
    padding-top: 42px;
  }
  .footer-col:last-child {
    grid-column: auto;
    margin-top: 42px;
    display: flex;
    padding: 30px;
  }
}
@media (max-width: 520px) {
  .purpose-grid article {
    padding: 36px 24px;
  }
  .purpose-grid p {
    font-size: 14px;
  }
  .purpose-grid > article > span {
    font-size: 36px;
  }
  #products {
    padding-left: 20px;
    padding-right: 20px;
  }
  #products .section-heading h2 {
    font-size: clamp(46px, 14vw, 62px);
  }
  #products .section-heading > p {
    padding-left: 16px;
    font-size: 15px;
  }
  .all-products {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 13px;
  }
  .all-products .product-tile:last-child {
    grid-column: auto;
  }
  .product-tile {
    grid-template-columns: 1fr;
    grid-template-rows: 250px minmax(62px, auto);
    min-height: 312px;
    padding: 0;
  }
  .product-tile .product-number {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .product-tile:after {
    height: 54px;
  }
  .product-tile strong {
    max-width: 90%;
    padding: 0 18px;
    font-size: clamp(18px, 6vw, 22px);
  }
  .product-tile img {
    height: 250px;
    padding-inline: 0;
  }
  .product-tile b {
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
  }
  .why {
    padding: 72px 18px;
  }
  .why .eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 0.22em;
  }
  .why .section-heading h2 {
    font-size: 45px;
    line-height: 0.98;
  }
  .why-showcase {
    border-radius: 16px;
  }
  .why-grid {
    gap: 14px;
  }
  .why-grid article {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    min-height: auto;
    padding: 28px 20px 26px;
  }
  .why-grid img {
    grid-row: 1;
    width: 62px;
    height: 62px;
    padding: 16px;
    margin-bottom: 0;
  }
  .why-grid > article > span {
    right: 18px;
    top: 18px;
    font-size: 30px;
  }
  .why-grid h3 {
    grid-column: 2;
    margin: 0 42px 0 0;
    font-size: 22px;
    line-height: 1.18;
  }
  .why-grid h3:after {
    margin-top: 15px;
  }
  .why-grid p {
    grid-column: 1/-1;
    max-width: none;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.55;
  }
  .footer-gallery {
    grid-template-columns: repeat(5, 115px);
    margin-bottom: 58px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .footer-gallery::-webkit-scrollbar {
    display: none;
  }
  .footer-gallery img {
    height: 100px;
    scroll-snap-align: start;
  }
  .footer-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer-products h3 {
    grid-column: 1/-1;
  }
}

/* Food photography pattern with layered parallax */
.parallax-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.parallax-section > :not(.food-parallax) {
  position: relative;
  z-index: 2;
}
.food-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.food-parallax:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background: radial-gradient(
      circle at 8% 18%,
      transparent 0 74px,
      rgba(10, 158, 81, 0.075) 75px 76px,
      transparent 77px
    ),
    radial-gradient(
      circle at 93% 72%,
      transparent 0 118px,
      rgba(10, 158, 81, 0.06) 119px 120px,
      transparent 121px
    ),
    radial-gradient(circle at 55% 6%, rgba(10, 158, 81, 0.032), transparent 26%);
}
.food-orb,
.food-outline {
  position: absolute;
  display: block;
  transform: translate3d(0, var(--parallax-y, 0), 0) rotate(var(--tilt, 0deg));
  will-change: transform;
}
.food-orb {
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 58% 42% 63% 37% / 43% 61% 39% 57%;
  background-position: center;
  background-size: cover;
  opacity: 0.095;
  filter: saturate(0.65) contrast(0.95);
  box-shadow: 0 24px 70px rgba(9, 47, 39, 0.12);
}
.food-orb:after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
}
.orb-coffee {
  background-image: url("../images/1.jpg");
}
.orb-dates {
  background-image: url("../images/2.jpg");
}
.orb-cashews {
  background-image: url("../images/3.jpg");
}
.orb-rice {
  background-image: url("../images/4.jpg");
}
.orb-oil {
  background-image: url("../images/5.jpg");
}
.orb-pasta {
  background-image: url("../images/8.jpg");
}
.orb-eggs {
  background-image: url("../images/10.jpg");
}
.food-outline {
  width: 330px;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 158, 81, 0.1);
  border-radius: 50%;
}
.food-outline:before,
.food-outline:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(10, 158, 81, 0.08);
  border-radius: 50%;
}
.food-outline:before {
  inset: 45px;
}
.food-outline:after {
  inset: 94px;
}

.pattern-about .orb-a {
  left: -105px;
  top: 10%;
  width: 235px;
  --tilt: -16deg;
}
.pattern-about .orb-b {
  right: -90px;
  top: 4%;
  width: 205px;
  --tilt: 12deg;
}
.pattern-about .orb-c {
  right: 7%;
  bottom: -112px;
  width: 250px;
  --tilt: -8deg;
}
.pattern-about .orb-d {
  left: 38%;
  top: 47%;
  width: 185px;
  --tilt: 11deg;
}
.pattern-about .orb-e {
  right: 18%;
  top: 57%;
  width: 165px;
  --tilt: -12deg;
}
.pattern-about .outline-a {
  left: 38%;
  bottom: -190px;
  width: 390px;
}
.pattern-products .orb-a {
  left: -78px;
  top: 1%;
  width: 220px;
  --tilt: 10deg;
}
.pattern-products .orb-b {
  right: -82px;
  top: 3%;
  width: 235px;
  --tilt: -13deg;
}
.pattern-products .orb-c {
  left: 9%;
  bottom: -100px;
  width: 205px;
  --tilt: 8deg;
}
.pattern-products .orb-d {
  left: 43%;
  top: -96px;
  width: 175px;
  --tilt: -9deg;
}
.pattern-products .orb-e {
  right: 21%;
  top: 12%;
  width: 150px;
  --tilt: 12deg;
}
.pattern-products .outline-b {
  right: 15%;
  top: 1%;
  width: 410px;
}
.pattern-why .food-orb {
  opacity: 0.11;
}
.pattern-why .orb-a {
  right: -100px;
  top: 7%;
  width: 245px;
  --tilt: 14deg;
}
.pattern-why .orb-b {
  left: -92px;
  top: 31%;
  width: 210px;
  --tilt: -11deg;
}
.pattern-why .orb-c {
  right: 4%;
  bottom: -115px;
  width: 235px;
  --tilt: 9deg;
}
.pattern-why .orb-d {
  left: 24%;
  bottom: -135px;
  width: 195px;
  --tilt: -8deg;
}
.pattern-why .outline-c {
  right: -45px;
  top: -120px;
  width: 440px;
}
.pattern-testimonials .food-orb {
  opacity: 0.09;
}
.pattern-testimonials .orb-a {
  left: -82px;
  top: 3%;
  width: 205px;
  --tilt: -11deg;
}
.pattern-testimonials .orb-b {
  right: -95px;
  top: 4%;
  width: 230px;
  --tilt: 13deg;
}
.pattern-testimonials .orb-c {
  left: 31%;
  bottom: -110px;
  width: 180px;
  --tilt: 9deg;
}
.pattern-testimonials .orb-d {
  right: 30%;
  top: -80px;
  width: 155px;
  --tilt: -7deg;
}
.pattern-testimonials .outline-d {
  left: 48%;
  top: -165px;
  width: 380px;
}
.pattern-partners .food-orb {
  opacity: 0.085;
}
.pattern-partners .orb-a {
  left: -88px;
  top: 2%;
  width: 205px;
  --tilt: 12deg;
}
.pattern-partners .orb-b {
  right: -92px;
  top: 3%;
  width: 225px;
  --tilt: -13deg;
}
.pattern-partners .orb-c {
  left: 45%;
  top: -105px;
  width: 170px;
  --tilt: 8deg;
}
.pattern-partners .orb-d {
  left: 13%;
  bottom: -100px;
  width: 180px;
  --tilt: -10deg;
}
.pattern-partners .outline-e {
  right: 28%;
  top: -155px;
  width: 390px;
}
.testimonials,
.partners {
  position: relative;
}
.testimonials {
  background: linear-gradient(135deg, #f5f1e8 0%, #f1f5ef 100%);
}
.partners {
  background: linear-gradient(145deg, #fff 0%, #f7faf7 100%);
}

@media (max-width: 1180px) {
  .food-orb {
    opacity: 0.075;
  }
  .pattern-why .food-orb {
    opacity: 0.085;
  }
  .pattern-about .orb-c,
  .pattern-products .orb-c,
  .pattern-why .orb-d,
  .pattern-testimonials .orb-c,
  .pattern-partners .orb-d {
    display: none;
  }
}
@media (max-width: 820px) {
  .food-orb {
    width: 155px !important;
    opacity: 0.065 !important;
    filter: saturate(0.5);
  }
  .food-outline {
    width: 260px !important;
  }
  .pattern-about .orb-a,
  .pattern-products .orb-a,
  .pattern-why .orb-b,
  .pattern-testimonials .orb-a,
  .pattern-partners .orb-a {
    left: -90px;
  }
  .pattern-about .orb-b,
  .pattern-products .orb-b,
  .pattern-why .orb-a,
  .pattern-testimonials .orb-b,
  .pattern-partners .orb-b {
    right: -90px;
  }
  .pattern-about .orb-d,
  .pattern-about .orb-e,
  .pattern-products .orb-d,
  .pattern-products .orb-e,
  .pattern-testimonials .orb-d,
  .pattern-partners .orb-c {
    display: none;
  }
}
@media (max-width: 520px) {
  .pattern-about .orb-b,
  .pattern-products .orb-b,
  .pattern-why .orb-a,
  .pattern-testimonials .orb-b,
  .pattern-partners .orb-b,
  .food-outline {
    display: none;
  }
}
@media (min-width: 1500px) {
  .about-copy h2 {
    font-size: 100px;
  }
}
@media (max-width: 1180px) {
  .about-premium {
    grid-template-columns: minmax(300px, 0.9fr) minmax(390px, 1.1fr);
    gap: 42px;
    min-height: 860px;
    padding-top: 130px;
  }
  .about-visual {
    min-height: 520px;
  }
  .about-image-frame {
    margin-left: -18px;
  }
  .about-badge {
    width: 150px;
    height: 150px;
    bottom: 34px;
    font-size: 10px;
  }
  .about-copy h2 {
    font-size: 84px;
    white-space: normal;
  }
  .about-copy h3 {
    font-size: 25px;
  }
  .purpose-grid h3 {
    font-size: 36px;
  }
  .purpose-grid p {
    font-size: 15px;
  }
}
@media (max-width: 820px) {
  .about-premium {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 110px 24px 44px;
  }
  .about-bg {
    background-position: 42% center;
  }
  .about-visual {
    min-height: 0;
    order: 1;
  }
  .about-image-frame {
    width: min(560px, 100%);
    min-height: 0;
    margin: -18px auto 0;
    padding: 0;
  }
  .about-image-frame img {
    transform: translateY(12px);
  }
  .about-badge {
    right: 7%;
    bottom: 18px;
    width: 138px;
    height: 138px;
    padding: 36px 18px 20px;
  }
  .about-badge:before {
    top: 22px;
    width: 34px;
    height: 34px;
    background:
      radial-gradient(circle, #fff 0 3px, transparent 4px),
      linear-gradient(#fff, #fff) center / 2px 22px no-repeat,
      linear-gradient(90deg, #fff, #fff) center / 22px 2px no-repeat;
  }
  .about-copy {
    order: 2;
    max-width: none;
    padding-top: 0;
  }
  .about-copy h2 {
    font-size: 64px;
    white-space: normal;
  }
  .about-copy h3 {
    font-size: 24px;
  }
  .about-copy > p {
    font-size: 15px;
  }
  .purpose-grid {
    order: 3;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }
  .purpose-grid article {
    min-height: 0;
    padding: 32px 30px 34px;
  }
  .purpose-grid article + article {
    border-top: 1px solid rgba(196, 223, 168, 0.38);
    border-left: 1px solid rgba(196, 223, 168, 0.38);
  }
  .purpose-icon {
    font-size: 72px;
  }
  .purpose-grid > article > span {
    top: 28px;
    right: 28px;
    font-size: 54px;
  }
  .purpose-grid h3 {
    font-size: 34px;
  }
}
@media (max-width: 520px) {
  .about-premium {
    padding: 96px 18px 34px;
  }
  .about-image-frame {
    width: 112%;
    margin-left: -6%;
  }
  .about-badge {
    right: 4px;
    bottom: 4px;
    width: 116px;
    height: 116px;
    padding: 30px 14px 17px;
    font-size: 9px;
  }
  .about-badge:before {
    top: 18px;
    width: 28px;
    height: 28px;
    background:
      radial-gradient(circle, #fff 0 2px, transparent 3px),
      linear-gradient(#fff, #fff) center / 2px 18px no-repeat,
      linear-gradient(90deg, #fff, #fff) center / 18px 2px no-repeat;
  }
  .about-copy h2 {
    font-size: 48px;
  }
  .about-copy h3 {
    font-size: 22px;
  }
  .purpose-grid article {
    padding: 28px 22px 30px;
  }
  .purpose-icon {
    font-size: 64px;
  }
  .purpose-grid > article > span {
    top: 24px;
    right: 22px;
    font-size: 44px;
  }
  .purpose-grid h3 {
    font-size: 32px;
  }
  .purpose-grid p {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active::before,
  .hero-slide.active .eyebrow,
  .hero-slide.active h1,
  .hero-slide.active h1 em,
  .hero-slide.active .hero-copy,
  .hero-slide.active .button,
  .slider-controls button.active::after {
    animation: none;
  }
  .hero-slide::before {
    transform: scale(1.01);
    transition: none;
    will-change: auto;
  }
  .hero-slide .eyebrow,
  .hero-slide h1,
  .hero-slide h1 em,
  .hero-slide .hero-copy,
  .hero-slide .button {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .slider-controls button.active::after {
    transform: scaleX(1);
  }
  .hero-progress span {
    transition: none;
  }
  .food-orb,
  .food-outline {
    transform: rotate(var(--tilt, 0deg));
    will-change: auto;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-slider h1,
.section-heading h2,
.about-copy h2,
.about-copy h3,
.featured-strip h2,
.product-tile h3,
.why-grid h3,
.presence h2,
.footer-col h3 {
  font-family: var(--display) !important;
  letter-spacing: 0 !important;
}
