:root {
  --rice: #fbf6ea;
  --paper: #fffdf6;
  --ink: #11110e;
  --charcoal: #25231e;
  --green: #1f8a3a;
  --leaf: #0e3a24;
  --saffron: #e8a11a;
  --turmeric: #d97706;
  --chilli: #b7332c;
  --rose: #b5677a;
  --line: rgba(17, 17, 14, 0.14);
  --soft-shadow: 0 24px 70px rgba(17, 17, 14, 0.14);
  --radius: 8px;
  --section-heading-gradient: linear-gradient(92deg, #2fa64f 0%, var(--green) 30%, var(--turmeric) 66%, var(--chilli) 100%);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--rice);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: clip;
}

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

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

button,
input {
  font: inherit;
}

.index-page {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(31, 138, 58, 0.12), transparent 40%),
    linear-gradient(300deg, rgba(183, 51, 44, 0.12), transparent 34%),
    var(--rice);
}

.option-index {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 24px;
}

.index-logo {
  width: 220px;
}

.option-index h1 {
  max-width: 920px;
  margin: 0;
  font: 650 clamp(2.8rem, 7vw, 6.8rem) / 0.92 var(--font-display);
  letter-spacing: 0;
}

.index-copy {
  max-width: 680px;
  margin: 0;
  color: rgba(17, 17, 14, 0.72);
  font-size: 1.1rem;
}

.option-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.option-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 246, 0.78);
  box-shadow: var(--soft-shadow);
  display: grid;
  align-content: end;
  gap: 12px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.option-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 138, 58, 0.45);
}

.option-card strong {
  font: 650 2rem / 1 var(--font-display);
}

.option-card span:last-child {
  color: rgba(17, 17, 14, 0.7);
}

.option-number,
.eyebrow {
  color: var(--green);
  font: 700 0.72rem / 1.1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site {
  background: var(--paper);
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 84px;
  padding: 16px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255, 253, 246, 0.88);
  border-bottom: 1px solid rgba(17, 17, 14, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 174px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  color: rgba(17, 17, 14, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-product-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  padding: 0 8px 0 14px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav-product-group::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 18;
  width: 292px;
  height: 16px;
}

.nav-product-group:hover,
.nav-product-group:focus-within,
.nav-product-group.submenu-open {
  background: linear-gradient(135deg, var(--leaf), var(--green) 64%, #68a83d);
  box-shadow:
    0 12px 28px rgba(14, 58, 36, 0.22),
    inset 0 1px 0 rgba(255, 253, 246, 0.22);
  transform: translateY(-1px);
}

.nav-product-link {
  position: relative;
  z-index: 1;
}

.nav-product-group:hover .nav-product-link,
.nav-product-group:focus-within .nav-product-link,
.nav-product-group.submenu-open .nav-product-link {
  color: var(--paper);
}

.submenu-toggle {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 246, 0.26);
  color: var(--leaf);
  box-shadow: none;
  cursor: pointer;
}

.nav-product-group:hover .submenu-toggle,
.nav-product-group:focus-within .submenu-toggle,
.nav-product-group.submenu-open .submenu-toggle {
  color: var(--paper);
  background: rgba(255, 253, 246, 0.24);
}

.submenu-toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-product-group:hover .submenu-toggle span,
.nav-product-group:focus-within .submenu-toggle span,
.nav-product-group.submenu-open .submenu-toggle span {
  transform: translateY(2px) rotate(225deg);
}

.product-submenu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 12px);
  left: 0;
  width: 292px;
  padding: 10px;
  border: 1px solid rgba(255, 253, 246, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(232, 161, 26, 0.16), transparent 12rem),
    radial-gradient(circle at 94% 20%, rgba(31, 138, 58, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.99), rgba(251, 246, 234, 0.96));
  box-shadow:
    0 32px 76px rgba(17, 17, 14, 0.22),
    inset 0 1px 0 rgba(255, 253, 246, 0.95);
  backdrop-filter: blur(20px) saturate(1.16);
  -webkit-backdrop-filter: blur(20px) saturate(1.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top left;
  transition: opacity 120ms ease, visibility 120ms ease, transform 120ms ease;
}

.product-submenu::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -7px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(255, 253, 246, 0.72);
  border-top: 1px solid rgba(255, 253, 246, 0.72);
  background: rgba(255, 253, 246, 0.94);
  transform: rotate(45deg);
}

.product-submenu a {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: var(--leaf);
  font-size: 0.9rem;
  background: rgba(255, 253, 246, 0.42);
}

.product-submenu a + a {
  margin-top: 4px;
}

.product-submenu a:hover,
.product-submenu a:focus-visible {
  color: var(--paper);
  background: linear-gradient(135deg, var(--leaf), var(--green) 64%, #68a83d);
}

.nav-product-group:hover .product-submenu,
.nav-product-group:focus-within .product-submenu,
.nav-product-group.submenu-open .product-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

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

.menu-toggle {
  display: none;
  min-height: 42px;
  width: 46px;
  padding: 0;
  border: 1px solid rgba(14, 58, 36, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.86), rgba(251, 246, 234, 0.56)),
    rgba(255, 253, 246, 0.72);
  color: var(--leaf);
  align-items: center;
  justify-content: center;
  font: 800 0.82rem / 1 var(--font-body);
  box-shadow:
    0 14px 30px rgba(14, 58, 36, 0.12),
    inset 0 1px 0 rgba(255, 253, 246, 0.9);
  cursor: pointer;
}

.menu-toggle i {
  width: 22px;
  height: 16px;
  position: relative;
  display: inline-block;
  border-radius: 99px;
  background: currentColor;
  background-clip: content-box;
  padding-block: 7px;
  transition: background-color 180ms ease;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle i::before {
  top: 0;
}

.menu-toggle i::after {
  top: 14px;
}

.site-header.nav-open .menu-toggle i {
  background-color: transparent;
}

.site-header.nav-open .menu-toggle i::before {
  top: 7px;
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle i::after {
  top: 7px;
  transform: rotate(-45deg);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--leaf);
  border-radius: var(--radius);
  background: var(--leaf);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(14, 58, 36, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(14, 58, 36, 0.24);
}

.button.small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.button.ghost {
  background: transparent;
  color: var(--leaf);
  box-shadow: none;
}

.button.ghost.dark {
  color: var(--paper);
  border-color: rgba(255, 253, 246, 0.52);
}

.hero {
  width: min(1440px, 100%);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) clamp(20px, 5vw, 64px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  align-items: start;
  gap: clamp(28px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(251, 246, 234, 1) 0%, rgba(251, 246, 234, 0.78) 46%, transparent 80%),
    radial-gradient(circle at 88% 20%, rgba(232, 161, 26, 0.22), transparent 30%);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  font: 650 clamp(2.75rem, 4.35vw, 4.55rem) / 0.98 var(--font-display);
}

h2 {
  font: 650 clamp(2.1rem, 4.6vw, 4.4rem) / 0.98 var(--font-display);
}

h3 {
  font: 650 1.55rem / 1.05 var(--font-display);
}

.hero-copy {
  display: grid;
  gap: 20px;
  padding-top: clamp(12px, 3vw, 44px);
}

.hero-copy p:not(.eyebrow),
.section-head h2 + p,
.split-copy p,
.label-copy p,
.rfq-copy p,
.credibility-section p {
  margin: 0;
  color: rgba(17, 17, 14, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.pack-grid span,
.pack-list span {
  border: 1px solid rgba(17, 17, 14, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 246, 0.72);
  color: rgba(17, 17, 14, 0.72);
  font: 700 0.78rem / 1 var(--font-mono);
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.hero-media img,
.story-image img,
.label-image img,
.credibility-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-proof {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(14, 58, 36, 0.92);
  color: var(--paper);
}

.floating-proof strong,
.floating-proof span {
  display: block;
}

.floating-proof span {
  margin-top: 4px;
  color: rgba(255, 253, 246, 0.74);
  font-size: 0.88rem;
}

.trust-strip {
  width: min(1312px, calc(100% - 40px));
  margin: 0 auto;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
}

.trust-strip article {
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  color: var(--charcoal);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip h2 {
  margin: 0;
  font: 800 0.96rem / 1.15 var(--font-body);
  color: var(--leaf);
}

.trust-strip p {
  margin: 8px 0 0;
  color: rgba(37, 35, 30, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section,
.process-section,
.split-section,
.comparison-section,
.credibility-section,
.rfq-section,
.buyer-section {
  width: min(1312px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 136px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
}

.text-link {
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-tile {
  min-height: 350px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 246, 234, 0.52);
  display: grid;
  align-content: start;
  gap: 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.product-tile:hover {
  background: var(--paper);
  transform: translateY(-3px);
}

.tile-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 11px rgba(255, 253, 246, 0.34);
}

.tile-mark.onion { background: var(--rose); }
.tile-mark.garlic { background: #f2d7a4; }
.tile-mark.ginger { background: var(--saffron); }
.tile-mark.veg { background: var(--green); }
.tile-mark.spice { background: var(--chilli); }
.tile-mark.seasoning { background: var(--turmeric); }

.product-tile p {
  margin: 0;
  color: rgba(17, 17, 14, 0.68);
}

.product-tile dl {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-tile dt {
  margin-bottom: 6px;
  color: var(--green);
  font: 700 0.72rem / 1 var(--font-mono);
  text-transform: uppercase;
}

.product-tile dd {
  margin: 0;
  font-weight: 800;
}

.process-section {
  background: var(--leaf);
  color: var(--paper);
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1312px) / 2));
}

.process-section h2,
.process-section .eyebrow {
  color: var(--paper);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 253, 246, 0.18);
  border: 1px solid rgba(255, 253, 246, 0.18);
}

.process-line span {
  min-height: 120px;
  padding: 18px;
  background: rgba(255, 253, 246, 0.08);
  display: flex;
  align-items: end;
  color: var(--paper);
  font: 700 0.84rem / 1.2 var(--font-mono);
  text-transform: uppercase;
}

.split-section,
.credibility-section,
.rfq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.split-copy,
.rfq-copy {
  display: grid;
  gap: 20px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pack-grid span {
  min-height: 112px;
  border-radius: var(--radius);
  display: flex;
  align-items: end;
  padding: 18px;
  background: linear-gradient(135deg, rgba(31, 138, 58, 0.15), rgba(232, 161, 26, 0.18)), var(--paper);
  font-size: 1rem;
}

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

.buyer-grid div {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.buyer-grid strong,
.buyer-grid span {
  display: block;
}

.buyer-grid span {
  margin: 8px 0 0;
  color: rgba(17, 17, 14, 0.65);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--leaf);
  font: 700 0.78rem / 1.2 var(--font-mono);
  text-transform: uppercase;
}

td:first-child {
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.credibility-section {
  background: var(--charcoal);
  color: var(--paper);
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1312px) / 2));
}

.credibility-section h2,
.credibility-section .eyebrow {
  color: var(--paper);
}

.credibility-section img {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
}

.rfq-section {
  align-items: start;
}

.rfq-copy a {
  color: var(--green);
  font-weight: 800;
}

.rfq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
}

.rfq-actions .button {
  color: var(--paper);
}

.rfq-actions .button.ghost {
  color: var(--leaf);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Option 1 elevation: warmer spice depth, crafted labels, and less flat sectioning. */
.option-one {
  background:
    radial-gradient(circle at 12% 5%, rgba(232, 161, 26, 0.26), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(183, 51, 44, 0.18), transparent 22rem),
    linear-gradient(180deg, #fff8e6 0%, var(--paper) 34%, #fbf0dc 100%);
}

.option-one .reveal {
  opacity: 1;
  transform: none;
}

.option-one::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(37, 35, 30, 0.13) 1px, transparent 0),
    repeating-linear-gradient(135deg, rgba(217, 119, 6, 0.07) 0 1px, transparent 1px 22px);
  background-size: 18px 18px, 100% 100%;
}

.option-one .site-header {
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 7% 0%, rgba(232, 161, 26, 0.2), transparent 18rem),
    radial-gradient(circle at 92% 20%, rgba(31, 138, 58, 0.16), transparent 16rem),
    linear-gradient(112deg, rgba(255, 253, 246, 0.86), rgba(251, 246, 234, 0.68)),
    rgba(255, 253, 246, 0.66);
  border-bottom: 1px solid rgba(255, 253, 246, 0.58);
  box-shadow:
    0 18px 46px rgba(37, 35, 30, 0.12),
    0 1px 0 rgba(255, 253, 246, 0.88) inset;
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
}

.option-one .brand img {
  width: clamp(172px, 15vw, 240px);
  max-height: 54px;
  height: auto;
  object-fit: contain;
}

.option-one .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.option-one .brand-word {
  color: var(--leaf);
  font: 750 1.08rem / 1 var(--font-display);
  white-space: nowrap;
}

.option-one .main-nav {
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 253, 246, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.78), rgba(251, 246, 234, 0.46)),
    rgba(255, 253, 246, 0.46);
  box-shadow:
    0 14px 34px rgba(37, 35, 30, 0.1),
    0 5px 14px rgba(14, 58, 36, 0.07),
    inset 0 1px 0 rgba(255, 253, 246, 0.9),
    inset 0 -10px 22px rgba(232, 161, 26, 0.08);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.option-one .main-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(37, 35, 30, 0.76);
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.option-one .nav-product-group {
  padding: 0 8px 0 14px;
}

.option-one .main-nav .nav-product-link {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.option-one .main-nav .nav-product-link:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.option-one .main-nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--saffron));
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.option-one .main-nav a:hover {
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--leaf), var(--green) 64%, #68a83d);
  box-shadow:
    0 10px 24px rgba(14, 58, 36, 0.22),
    inset 0 1px 0 rgba(255, 253, 246, 0.22);
  transform: translateY(-1px);
}

.option-one .main-nav a:hover::after {
  opacity: 0.82;
  transform: scaleX(1);
}

.option-one .main-nav .nav-product-link::after {
  display: none;
}

.option-one .product-submenu a {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--leaf);
  transform: none;
}

.option-one .product-submenu a::after {
  display: none;
}

.option-one .product-submenu a:hover,
.option-one .product-submenu a:focus-visible {
  color: var(--paper);
  transform: none;
}

.option-one .button {
  border: 0;
  background: linear-gradient(135deg, var(--leaf) 0%, var(--green) 52%, #69a33f 100%);
  box-shadow: 0 16px 34px rgba(14, 58, 36, 0.2), inset 0 1px 0 rgba(255, 253, 246, 0.32);
}

.option-one .button.ghost {
  border: 1px solid rgba(14, 58, 36, 0.2);
  background:
    linear-gradient(135deg, rgba(232, 161, 26, 0.16), rgba(31, 138, 58, 0.08)),
    rgba(255, 253, 246, 0.58);
  color: var(--leaf);
}

.option-one .hero-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 122px);
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: clamp(52px, 6.6vw, 92px) max(20px, calc((100vw - 1312px) / 2)) clamp(34px, 4.8vw, 56px);
  background:
    linear-gradient(135deg, rgba(14, 58, 36, 1), rgba(37, 35, 30, 0.73) 48%, rgba(183, 51, 44, 0.63)),
    var(--leaf);
}

.option-one .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.12) contrast(1.03);
}

.option-one .hero-grid::before,
.option-one .hero-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -2;
}

.option-one .hero-grid::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 58, 36, 0.59) 0%, rgba(17, 17, 14, 0.53) 44%, rgba(17, 17, 14, 0.73) 100%),
    radial-gradient(circle at 50% 48%, rgba(255, 253, 246, 0.14), transparent 19rem),
    radial-gradient(circle at 18% 18%, rgba(232, 161, 26, 0.53), transparent 21rem),
    radial-gradient(circle at 82% 78%, rgba(183, 51, 44, 0.55), transparent 22rem),
    linear-gradient(90deg, rgba(14, 58, 36, 0.81), rgba(37, 35, 30, 0.59) 52%, rgba(217, 119, 6, 0.53));
  mix-blend-mode: multiply;
}

.option-one .hero-grid::after {
  display: none;
}

.spice-arc {
  position: absolute;
  left: clamp(18px, 4vw, 64px);
  bottom: clamp(18px, 4vw, 58px);
  width: min(38vw, 430px);
  height: 112px;
  border: 1px solid rgba(217, 119, 6, 0.26);
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 140px;
  opacity: 0.72;
}

.spice-arc::before,
.spice-arc::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.spice-arc::before {
  width: 9px;
  height: 9px;
  left: 28%;
  top: 24px;
  background: var(--chilli);
  box-shadow: 88px -22px 0 var(--saffron), 174px 18px 0 var(--green);
}

.spice-arc::after {
  width: 120px;
  height: 50px;
  left: 44px;
  bottom: -18px;
  border: 1px solid rgba(181, 103, 122, 0.24);
  transform: rotate(-7deg);
}

.option-one .hero-copy {
  max-width: 890px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  filter:
    drop-shadow(0 22px 34px rgba(0, 0, 0, 0.38))
    drop-shadow(0 3px 0 rgba(14, 58, 36, 0.28));
  transform: translateY(-2px);
  justify-items: center;
  text-align: center;
}

.option-one .hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 253, 246, 0.94);
  text-shadow:
    0 1px 0 rgba(14, 58, 36, 0.75),
    0 8px 24px rgba(0, 0, 0, 0.42),
    0 20px 46px rgba(0, 0, 0, 0.28);
}

.option-one h1 {
  color: transparent;
  background:
    linear-gradient(90deg, #fffdf6 0%, #f5d067 34%, #7ac653 64%, #ff7f3f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 1px 0 rgba(255, 253, 246, 0.18),
    0 3px 0 rgba(14, 58, 36, 0.28),
    0 16px 28px rgba(0, 0, 0, 0.42),
    0 38px 78px rgba(0, 0, 0, 0.38);
}

.option-one .hero-actions .button {
  box-shadow:
    0 1px 0 rgba(255, 253, 246, 0.28) inset,
    0 14px 26px rgba(0, 0, 0, 0.3),
    0 28px 58px rgba(14, 58, 36, 0.34);
}

.option-one .hero-actions {
  justify-content: center;
}

.option-one .hero-actions .button.ghost {
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.8), rgba(232, 161, 26, 0.46));
  box-shadow:
    0 1px 0 rgba(255, 253, 246, 0.52) inset,
    0 14px 24px rgba(0, 0, 0, 0.26),
    0 26px 52px rgba(217, 119, 6, 0.24);
}

.hero-certifications {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  margin-top: clamp(12px, 1.6vw, 20px);
  padding: 0;
}

.hero-certifications figure {
  width: clamp(108px, 9vw, 138px);
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--paper);
  text-align: center;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 12px 26px rgba(0, 0, 0, 0.42);
}

.hero-certifications img {
  width: clamp(113px, 8.8vw, 137px);
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 20px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 14px rgba(255, 253, 246, 0.12))
    saturate(1.18)
    contrast(1.04);
}

.hero-certifications figcaption {
  font: 800 0.82rem / 1.12 var(--font-body);
  letter-spacing: 0;
  text-transform: uppercase;
}

.option-one h1::selection,
.option-one h2::selection,
.option-one h3::selection {
  background: rgba(232, 161, 26, 0.28);
}

.option-one .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 8px 11px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(232, 161, 26, 0.17), rgba(183, 51, 44, 0.1)),
    rgba(255, 253, 246, 0.72);
  color: transparent;
  background-clip: padding-box, padding-box;
  -webkit-background-clip: padding-box, text;
  background-image:
    linear-gradient(135deg, rgba(232, 161, 26, 0.17), rgba(183, 51, 44, 0.1)),
    linear-gradient(90deg, var(--green), var(--turmeric), var(--chilli));
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.08);
}

.option-one .hero-meta span {
  border-color: rgba(255, 253, 246, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.16), rgba(232, 161, 26, 0.16));
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.18);
}

.option-one .hero-media {
  aspect-ratio: 1.08 / 1;
  border: 1px solid rgba(255, 253, 246, 0.72);
  box-shadow: 0 34px 100px rgba(37, 35, 30, 0.2), 0 0 0 12px rgba(255, 253, 246, 0.22);
}

.option-one .hero-media img {
  object-position: center;
  filter: saturate(1.08) contrast(1.02);
}

.option-one .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 50%, rgba(17, 17, 14, 0.18)),
    radial-gradient(circle at 26% 22%, rgba(232, 161, 26, 0.22), transparent 28%);
}

.option-one .floating-proof {
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(14, 58, 36, 0.94), rgba(31, 138, 58, 0.82)),
    var(--leaf);
  box-shadow: 0 18px 48px rgba(17, 17, 14, 0.22);
}

.option-one .trust-strip {
  position: relative;
  margin-top: -24px;
  border: 0;
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(232, 161, 26, 0.18), transparent 24rem),
    radial-gradient(circle at 94% 24%, rgba(31, 138, 58, 0.14), transparent 20rem),
    linear-gradient(135deg, rgba(255, 253, 246, 0.92), rgba(251, 246, 234, 0.78)),
    rgba(255, 253, 246, 0.76);
  box-shadow:
    0 28px 76px rgba(37, 35, 30, 0.14),
    0 1px 0 rgba(255, 253, 246, 0.8) inset;
  backdrop-filter: blur(14px);
}

.option-one .trust-strip article {
  min-height: 146px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 35, 30, 0.09);
  border-radius: 6px;
  margin: 0;
  padding: 24px 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 246, 0.96), rgba(255, 247, 222, 0.82) 52%, rgba(232, 161, 26, 0.12)),
    var(--paper);
  color: var(--charcoal);
  display: grid;
  align-content: start;
  box-shadow:
    0 18px 38px rgba(37, 35, 30, 0.1),
    0 7px 18px rgba(14, 58, 36, 0.08),
    inset 0 1px 0 rgba(255, 253, 246, 0.94);
  transform: translateY(-2px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.option-one .trust-strip article::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% 42%;
  height: 82px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 138, 58, 0.16), transparent 64%);
  pointer-events: none;
}

.option-one .trust-strip article:hover {
  border-color: rgba(31, 138, 58, 0.22);
  box-shadow:
    0 24px 48px rgba(37, 35, 30, 0.14),
    0 12px 28px rgba(217, 119, 6, 0.12),
    inset 0 1px 0 rgba(255, 253, 246, 0.96);
  transform: translateY(-5px);
}

.option-one .trust-strip article::before {
  content: "";
  width: 34px;
  height: 3px;
  margin-bottom: 11px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--saffron), var(--chilli));
  box-shadow: 0 8px 18px rgba(217, 119, 6, 0.2);
}

.option-one .trust-strip h2 {
  position: relative;
  z-index: 1;
  color: transparent;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.option-one .trust-strip p {
  position: relative;
  z-index: 1;
  color: rgba(37, 35, 30, 0.72);
}

.option-one .spice-capabilities {
  position: relative;
}

.option-one .pack-section {
  position: relative;
  isolation: isolate;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.option-one .pack-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(232, 161, 26, 0.14), transparent 22rem),
    radial-gradient(circle at 72% 18%, rgba(31, 138, 58, 0.1), transparent 20rem),
    linear-gradient(90deg, rgba(14, 58, 36, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(217, 119, 6, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, transparent, rgba(251, 246, 234, 0.44) 42%, transparent);
  background-size:
    auto,
    auto,
    58px 58px,
    58px 58px,
    auto;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.option-one .pack-section .split-copy,
.option-one .pack-section .story-card {
  z-index: 1;
}

.option-one .pack-section .split-copy {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter:
    drop-shadow(0 18px 28px rgba(37, 35, 30, 0.14))
    drop-shadow(0 2px 0 rgba(255, 253, 246, 0.82));
  transform: translateY(-2px);
}

.option-one .pack-section .split-copy h2 {
  display: inline-block;
  padding-bottom: 0.16em;
  line-height: 1.06;
  background: var(--section-heading-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  filter: none;
}

.option-one .pack-section .split-copy p:not(.eyebrow) {
  text-shadow:
    0 1px 0 rgba(255, 253, 246, 0.88),
    0 11px 24px rgba(37, 35, 30, 0.16);
}

.option-one .pack-section .split-copy .button {
  box-shadow:
    0 1px 0 rgba(255, 253, 246, 0.28) inset,
    0 14px 28px rgba(14, 58, 36, 0.26),
    0 28px 58px rgba(217, 119, 6, 0.14);
  transform: translateY(0);
}

.option-one .pack-section .split-copy .button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 253, 246, 0.32) inset,
    0 20px 36px rgba(14, 58, 36, 0.3),
    0 34px 68px rgba(217, 119, 6, 0.18);
}

.option-one .spice-capabilities::before,
.option-one .spice-comparison::before,
.option-one .spice-rfq::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: min(420px, 70vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(183, 51, 44, 0.26), rgba(232, 161, 26, 0.42), transparent);
}

.option-one .section-head h2 {
  max-width: 980px;
}

.option-one #products {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(20px, calc((100vw - 1312px) / 2));
  padding-top: 10px;
  padding-bottom: 10px;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 161, 26, 0.22), transparent 18rem),
    radial-gradient(circle at 82% 68%, rgba(183, 51, 44, 0.18), transparent 18rem),
    linear-gradient(135deg, #25231e, #0e3a24 120%);
  box-shadow: none;
}

.option-one #products::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: auto;
  transform: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 161, 26, 0.22), transparent 18rem),
    radial-gradient(circle at 82% 68%, rgba(183, 51, 44, 0.18), transparent 18rem),
    linear-gradient(135deg, #25231e, #0e3a24 120%);
  pointer-events: none;
}

.option-one #products::after {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: 0;
  border: 1px solid rgba(255, 253, 246, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.option-one #products > * {
  position: relative;
  z-index: 1;
}

.option-one #products .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-top: 10px;
}

.option-one #products .section-head h2 {
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 0.12em;
  line-height: 1.05;
  background: var(--section-heading-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    drop-shadow(0 1px 0 rgba(255, 253, 246, 0.2))
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}

.option-one #products .section-head h2 + p {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 253, 246, 0.78);
  text-align: center;
  text-shadow:
    0 1px 0 rgba(14, 58, 36, 0.7),
    0 10px 24px rgba(0, 0, 0, 0.2);
}

.option-one #products .section-head .product-range-cta {
  margin-top: 2px;
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 253, 246, 0.3) inset,
    0 14px 30px rgba(14, 58, 36, 0.22),
    0 24px 52px rgba(217, 119, 6, 0.12);
}

.option-one .section-head h2,
.option-one .split-copy h2,
.option-one .rfq-copy h2 {
  background: var(--section-heading-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.option-one .text-link {
  padding: 10px 0;
  background: linear-gradient(90deg, var(--green), var(--chilli));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.option-one .capability-grid {
  gap: 16px;
  border: 0;
  counter-reset: products;
  align-items: stretch;
}

.option-one .product-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: 330px;
  border: 1px solid rgba(37, 35, 30, 0.08);
  border-radius: 8px;
  padding: 16px 18px 16px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 253, 246, 0.52), transparent 7rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.9), rgba(251, 246, 234, 0.55));
  box-shadow: 0 20px 48px rgba(37, 35, 30, 0.08);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.option-one .product-tile:focus-visible {
  outline: 3px solid rgba(31, 138, 58, 0.38);
  outline-offset: 4px;
}

.option-one #company {
  align-items: start;
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: 10px;
}

.option-one #solutions .buyer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-one #solutions {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.option-one #solutions::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(31, 138, 58, 0.2), rgba(232, 161, 26, 0.42), rgba(183, 51, 44, 0.24), transparent);
}

.option-one #solutions .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 28px;
}

.option-one #solutions .section-head h2 {
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 0.12em;
  line-height: 1.05;
  background: var(--section-heading-gradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    drop-shadow(0 2px 0 rgba(255, 253, 246, 0.82))
    drop-shadow(0 18px 30px rgba(37, 35, 30, 0.18));
}

.option-one #solutions .section-head h2 + p {
  max-width: 850px;
  margin: 0 auto;
  color: rgba(37, 35, 30, 0.72);
  text-align: center;
  text-shadow:
    0 1px 0 rgba(255, 253, 246, 0.84),
    0 10px 24px rgba(37, 35, 30, 0.1);
}

.option-one .tile-photo {
  position: relative;
  width: calc(100% + 10px);
  margin: -5px -5px 0;
  aspect-ratio: 16 / 6.9;
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(255, 253, 246, 0.72);
  box-shadow: 0 18px 36px rgba(37, 35, 30, 0.12);
}

.option-one .tile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(17, 17, 14, 0.16)),
    radial-gradient(circle at 28% 18%, rgba(232, 161, 26, 0.2), transparent 45%);
}

.option-one .tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: productImageSlowZoom 18s ease-in-out infinite alternate;
  transition: transform 320ms ease;
}

.option-one .product-tile:hover .tile-photo img {
  transform: scale(1.1);
}

.option-one .crop-garlic img { object-position: 52% 24%; }
.option-one .crop-powder img { object-position: 58% 78%; }
.option-one .crop-veg img { object-position: 48% 48%; }
.option-one .crop-spice img { object-position: 50% 50%; }
.option-one .crop-seasoning img { object-position: 50% 42%; }

@keyframes productImageSlowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.12);
  }
}

.option-one .product-tile:nth-child(1) { background: radial-gradient(circle at 86% 10%, rgba(181, 103, 122, 0.34), transparent 9rem), linear-gradient(145deg, #fffaf1, #faeadc); }
.option-one .product-tile:nth-child(2) { background: radial-gradient(circle at 86% 10%, rgba(242, 215, 164, 0.65), transparent 9rem), linear-gradient(145deg, #fffaf1, #f6eddb); }
.option-one .product-tile:nth-child(3) { background: radial-gradient(circle at 86% 10%, rgba(232, 161, 26, 0.34), transparent 9rem), linear-gradient(145deg, #fff8e6, #f7ead0); }
.option-one .product-tile:nth-child(4) { background: radial-gradient(circle at 86% 10%, rgba(31, 138, 58, 0.22), transparent 9rem), linear-gradient(145deg, #fffdf6, #eef3df); }
.option-one .product-tile:nth-child(5) { background: radial-gradient(circle at 86% 10%, rgba(183, 51, 44, 0.25), transparent 9rem), linear-gradient(145deg, #fff8ec, #f7dfd7); }
.option-one .product-tile:nth-child(6) { background: radial-gradient(circle at 86% 10%, rgba(217, 119, 6, 0.26), transparent 9rem), linear-gradient(145deg, #fff9ec, #f4e4c6); }

.option-one .product-tile::before {
  counter-increment: products;
  content: "0" counter(products);
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(37, 35, 30, 0.12);
  font: 750 3.6rem / 1 var(--font-display);
}

.option-one .product-tile::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -26px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(37, 35, 30, 0.12);
  box-shadow: inset 0 0 0 18px rgba(255, 253, 246, 0.28), 0 0 0 18px rgba(255, 253, 246, 0.2);
  z-index: -1;
}

.option-one .product-tile:hover {
  transform: translateY(-6px) rotate(-0.35deg);
  border-color: rgba(217, 119, 6, 0.34);
  box-shadow: 0 32px 74px rgba(37, 35, 30, 0.16), 0 0 0 1px rgba(255, 253, 246, 0.8) inset;
}

.option-one .product-tile:hover:nth-child(even) {
  transform: translateY(-6px) rotate(0.35deg);
}

.option-one .product-tile:active {
  transform: translateY(-2px) scale(0.99);
}

.option-one .tile-mark {
  position: absolute;
  right: 18px;
  top: clamp(140px, 13vw, 164px);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 10%;
  transform: rotate(-18deg);
  box-shadow: inset 0 0 0 12px rgba(255, 253, 246, 0.34), 0 12px 24px rgba(37, 35, 30, 0.14);
  pointer-events: none;
}

.option-one .product-tile h3 {
  color: var(--leaf);
  font-size: 1.42rem;
  padding-right: 58px;
}

.option-one .product-tile p {
  font-size: 0.94rem;
  line-height: 1.42;
  margin-bottom: auto;
}

.option-one .tile-cta {
  align-self: end;
  width: max-content;
  margin-top: auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 253, 246, 0.42);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.8);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.option-one .product-tile:hover .tile-cta,
.option-one .product-tile:focus-visible .tile-cta {
  color: var(--paper);
  background: linear-gradient(135deg, var(--leaf), var(--green) 58%, var(--turmeric));
  box-shadow:
    0 12px 24px rgba(14, 58, 36, 0.2),
    inset 0 1px 0 rgba(255, 253, 246, 0.24);
  transform: translateY(-2px);
}

.option-one .product-tile:active .tile-cta {
  color: var(--paper);
  background: linear-gradient(135deg, var(--chilli), var(--turmeric));
  box-shadow:
    0 10px 22px rgba(183, 51, 44, 0.2),
    inset 0 1px 0 rgba(255, 253, 246, 0.24);
}

.option-one .product-tile dl {
  border-top: 1px solid rgba(37, 35, 30, 0.1);
}

.option-one .product-tile dt {
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--turmeric), var(--chilli));
  -webkit-background-clip: text;
  background-clip: text;
}

.option-one .process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(232, 161, 26, 0.24), transparent 18rem),
    radial-gradient(circle at 82% 64%, rgba(31, 138, 58, 0.3), transparent 20rem),
    linear-gradient(145deg, #0e3a24, #221f19 78%);
}

.option-one .image-story {
  width: min(1312px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(70px, 9vw, 126px);
  display: grid;
  grid-template-columns: 1.35fr 0.68fr 0.68fr 0.86fr;
  gap: 16px;
}

.option-one .story-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 253, 246, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 253, 246, 0.88), rgba(251, 246, 234, 0.58)),
    var(--paper);
  box-shadow:
    0 30px 80px rgba(37, 35, 30, 0.18),
    0 10px 24px rgba(14, 58, 36, 0.1),
    0 0 0 10px rgba(255, 253, 246, 0.34);
  transform: translateY(-6px);
}

.option-one .story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.option-one .story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(17, 17, 14, 0.5));
  pointer-events: none;
}

.option-one .story-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--paper);
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(17, 17, 14, 0.32);
}

.option-one .story-card.large {
  min-height: 460px;
}

.option-one .pack-section .story-card {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  transform: translateY(-14px) rotate(0.35deg);
  filter:
    drop-shadow(0 34px 52px rgba(37, 35, 30, 0.22))
    drop-shadow(0 12px 20px rgba(14, 58, 36, 0.14));
}

.option-one .pack-section .story-card::before {
  content: "";
  position: absolute;
  inset: 18px -14px -18px 22px;
  z-index: -1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 18%, rgba(232, 161, 26, 0.2), transparent 44%),
    radial-gradient(circle at 82% 68%, rgba(31, 138, 58, 0.18), transparent 46%),
    rgba(255, 253, 246, 0.3);
  filter: blur(2px);
}

.option-one .pack-section .story-card img {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 253, 246, 0.86);
  box-shadow:
    0 1px 0 rgba(255, 253, 246, 0.9) inset,
    0 28px 68px rgba(37, 35, 30, 0.2),
    0 0 0 10px rgba(255, 253, 246, 0.28);
  transform: translateY(-2px);
}

.option-one .pack-section .story-card::after {
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(17, 17, 14, 0.02) 40%, rgba(17, 17, 14, 0.58)),
    radial-gradient(circle at 18% 14%, rgba(232, 161, 26, 0.12), transparent 36%);
}

.option-one .pack-section .story-card span {
  z-index: 2;
  text-shadow:
    0 2px 3px rgba(17, 17, 14, 0.58),
    0 14px 28px rgba(17, 17, 14, 0.46);
}

.option-one .story-card:not(.large) img {
  object-position: center;
}

.option-one .story-card.spice-source img {
  object-position: center;
  filter: saturate(1.1) contrast(1.04);
}

.option-one .story-card.dark {
  padding: 28px;
  display: grid;
  align-content: end;
  gap: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 161, 26, 0.28), transparent 11rem),
    linear-gradient(145deg, var(--leaf), var(--charcoal));
  color: var(--paper);
}

.option-one .story-card.dark::after {
  display: none;
}

.option-one .story-card.dark h3 {
  color: var(--paper);
  font-size: clamp(1.7rem, 2.1vw, 2.35rem);
}

.option-one .process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 253, 246, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 246, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.option-one .process-line {
  position: relative;
  gap: 10px;
  border: 0;
  background: transparent;
}

.option-one .process-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--chilli), var(--green));
  opacity: 0.65;
}

.option-one .process-line span {
  position: relative;
  min-height: 138px;
  border: 1px solid rgba(255, 253, 246, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 253, 246, 0.11), rgba(255, 253, 246, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.13);
}

.option-one .process-line span::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 8px rgba(232, 161, 26, 0.12);
}

.option-one .pack-section {
  position: relative;
}

.option-one .pack-grid {
  padding: 18px;
  border: 1px solid rgba(217, 119, 6, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.7), rgba(232, 161, 26, 0.12)),
    rgba(255, 253, 246, 0.5);
  box-shadow: 0 22px 60px rgba(37, 35, 30, 0.09);
}

.option-one .pack-grid span {
  border: 1px solid rgba(37, 35, 30, 0.08);
  background:
    radial-gradient(circle at 76% 18%, rgba(183, 51, 44, 0.16), transparent 4rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.9), rgba(232, 161, 26, 0.14));
  color: var(--leaf);
  font-size: 1.08rem;
}

.option-one .buyer-grid div {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(37, 35, 30, 0.08);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 253, 246, 0.66), transparent 7rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.94), rgba(251, 246, 234, 0.66)),
    var(--paper);
  box-shadow:
    0 22px 54px rgba(37, 35, 30, 0.1),
    0 8px 18px rgba(14, 58, 36, 0.06),
    inset 0 1px 0 rgba(255, 253, 246, 0.84);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.option-one .buyer-grid div::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 34%;
  top: 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--saffron), var(--chilli));
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.18);
}

.option-one .buyer-grid div::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 1px solid rgba(37, 35, 30, 0.11);
  box-shadow:
    inset 0 0 0 18px rgba(255, 253, 246, 0.28),
    0 0 0 18px rgba(255, 253, 246, 0.16);
  z-index: 0;
}

.option-one .buyer-grid div:hover {
  border-color: rgba(31, 138, 58, 0.22);
  box-shadow:
    0 30px 68px rgba(37, 35, 30, 0.15),
    0 14px 28px rgba(217, 119, 6, 0.1),
    inset 0 1px 0 rgba(255, 253, 246, 0.88);
  transform: translateY(-5px);
}

.option-one .buyer-grid strong {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: transparent;
  background: linear-gradient(92deg, var(--leaf), var(--green) 52%, var(--turmeric));
  -webkit-background-clip: text;
  background-clip: text;
  font: 900 1.02rem / 1.18 var(--font-body);
  text-shadow: none;
}

.option-one .buyer-grid span:not(.solution-icon) {
  position: relative;
  z-index: 1;
  color: rgba(37, 35, 30, 0.7);
  line-height: 1.45;
}

.solution-icon {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 18px 18px 18px 6px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.5), rgba(232, 161, 26, 0.18)),
    linear-gradient(135deg, var(--leaf), var(--green));
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 246, 0.32),
    0 14px 30px rgba(14, 58, 36, 0.18);
  transform: rotate(-4deg);
}

.solution-icon::before,
.solution-icon::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 253, 246, 0.9);
}

.icon-bulk::before {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  transform: translateY(3px);
}

.icon-bulk::after {
  width: 16px;
  height: 10px;
  border-radius: 3px;
  transform: translateY(-7px);
}

.icon-custom::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.icon-custom::after {
  width: 22px;
  height: 2px;
  border-width: 0 0 2px;
  transform: rotate(-35deg);
}

.icon-pack::before {
  width: 22px;
  height: 24px;
  border-radius: 4px 4px 7px 7px;
}

.icon-pack::after {
  width: 12px;
  height: 6px;
  border-radius: 8px 8px 0 0;
  border-bottom: 0;
  transform: translateY(-14px);
}

.icon-label::before {
  width: 22px;
  height: 28px;
  border-radius: 4px;
}

.icon-label::after {
  width: 12px;
  height: 2px;
  border-width: 2px 0 0;
  box-shadow: 0 7px 0 rgba(255, 253, 246, 0.9);
}

.private-label-sizes {
  width: min(880px, 100%);
  margin: 28px auto 0;
  padding: 18px clamp(16px, 3vw, 26px);
  display: grid;
  gap: 14px;
  text-align: center;
  border: 1px solid rgba(255, 253, 246, 0.74);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.82), rgba(251, 246, 234, 0.54)),
    radial-gradient(circle at 18% 0%, rgba(232, 161, 26, 0.16), transparent 18rem);
  box-shadow:
    0 24px 54px rgba(37, 35, 30, 0.12),
    0 10px 22px rgba(14, 58, 36, 0.08),
    inset 0 1px 0 rgba(255, 253, 246, 0.92);
}

.private-label-sizes strong {
  color: transparent;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  font: 900 0.78rem / 1.1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.private-label-sizes .size-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.private-label-sizes .size-chips span {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(14, 58, 36, 0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.96), rgba(251, 246, 234, 0.7)),
    rgba(255, 253, 246, 0.86);
  box-shadow:
    0 10px 20px rgba(37, 35, 30, 0.08),
    inset 0 1px 0 rgba(255, 253, 246, 0.9);
  font: 900 0.9rem / 1 var(--font-body);
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.option-one .table-wrap {
  border-color: rgba(217, 119, 6, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.92), rgba(251, 246, 234, 0.7)),
    var(--paper);
  box-shadow: 0 24px 70px rgba(37, 35, 30, 0.1);
}

.option-one th {
  color: transparent;
  background: linear-gradient(90deg, var(--green), var(--turmeric), var(--chilli));
  -webkit-background-clip: text;
  background-clip: text;
}

.option-one .credibility-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 161, 26, 0.22), transparent 18rem),
    radial-gradient(circle at 82% 68%, rgba(183, 51, 44, 0.18), transparent 18rem),
    linear-gradient(135deg, #25231e, #0e3a24 120%);
}

.option-one .credibility-section::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 253, 246, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.option-one .credibility-section img {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.option-one .quality-process-section {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 22px;
  padding-top: clamp(42px, 5.4vw, 72px);
  padding-bottom: clamp(42px, 5.4vw, 72px);
}

.quality-process-head {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.quality-process-head h2 {
  max-width: 900px;
  padding-bottom: 0.12em;
  color: transparent;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  filter:
    drop-shadow(0 1px 0 rgba(255, 253, 246, 0.16))
    drop-shadow(0 20px 34px rgba(0, 0, 0, 0.34));
}

.quality-process-head p:not(.eyebrow) {
  max-width: 850px;
  color: rgba(255, 253, 246, 0.78);
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.quality-stage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quality-stage-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(255, 253, 246, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(232, 161, 26, 0.14), transparent 7rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.13), rgba(255, 253, 246, 0.045));
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 253, 246, 0.13);
  backdrop-filter: blur(8px);
}

.quality-stage-grid article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -44px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 246, 0.1);
  box-shadow: inset 0 0 0 18px rgba(255, 253, 246, 0.04);
}

.quality-stage-grid span {
  display: inline-flex;
  min-width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--green), var(--turmeric));
  font: 800 0.72rem / 1 var(--font-mono);
  box-shadow: 0 12px 26px rgba(14, 58, 36, 0.22);
}

.quality-stage-grid h3 {
  margin-top: 18px;
  color: var(--paper);
  font-size: 1.26rem;
}

.quality-stage-grid p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(255, 253, 246, 0.72);
  line-height: 1.48;
}

.quality-proof {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 4px auto 0;
  padding: 20px;
  border: 1px solid rgba(255, 253, 246, 0.14);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.1), rgba(232, 161, 26, 0.08)),
    rgba(255, 253, 246, 0.035);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 253, 246, 0.12);
}

.quality-proof strong {
  color: var(--paper);
  font: 900 clamp(1rem, 1.7vw, 1.22rem) / 1.28 var(--font-body);
}

.quality-proof div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.option-one .spice-rfq {
  position: relative;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-top: clamp(42px, 5.2vw, 70px);
  padding-bottom: clamp(44px, 5.4vw, 76px);
  background:
    radial-gradient(circle at 16% 18%, rgba(232, 161, 26, 0.2), transparent 18rem),
    radial-gradient(circle at 88% 58%, rgba(31, 138, 58, 0.12), transparent 20rem);
}

.option-one .spice-rfq .rfq-copy {
  max-width: 880px;
  justify-items: center;
}

.option-one .spice-rfq .rfq-actions {
  justify-content: center;
}

.site-footer {
  width: 100%;
  padding: clamp(46px, 6vw, 78px) max(20px, calc((100vw - 1312px) / 2)) 24px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(150px, 0.55fr) minmax(150px, 0.55fr);
  gap: clamp(22px, 3vw, 38px);
  color: rgba(255, 253, 246, 0.78);
  background:
    radial-gradient(circle at 10% 0%, rgba(232, 161, 26, 0.18), transparent 22rem),
    radial-gradient(circle at 88% 20%, rgba(31, 138, 58, 0.22), transparent 24rem),
    linear-gradient(135deg, #11110e, #0e3a24 120%);
  border-top: 1px solid rgba(255, 253, 246, 0.1);
}

.footer-brand,
.footer-column,
.footer-contact {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: min(240px, 100%);
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.22));
}

.footer-brand p {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(255, 253, 246, 0.76);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font: 900 0.78rem / 1.1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-products,
.footer-company {
  display: grid;
  align-content: start;
  gap: 10px;
}

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

.footer-link-list a {
  width: max-content;
  max-width: 100%;
  color: rgba(255, 253, 246, 0.72);
  line-height: 1.35;
}

.footer-column a,
.footer-contact a,
.footer-bottom a {
  color: rgba(255, 253, 246, 0.78);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--saffron);
}

.footer-contact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.footer-contact > div {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 253, 246, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 253, 246, 0.08), rgba(255, 253, 246, 0.025));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 253, 246, 0.09);
}

.footer-contact p {
  margin: 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.footer-social {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 246, 0.78);
  font-weight: 800;
}

.instagram-link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 20%, transparent 42%),
    radial-gradient(circle at 20% 20%, #fa7e1e 0 18%, transparent 38%),
    linear-gradient(135deg, #833ab4, #fd1d1d 52%, #fcb045);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  transition: border-radius 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.instagram-link:hover {
  border-radius: 999px;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
}

.instagram-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 246, 0.1);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 246, 0.64);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom p:nth-child(3) {
  text-align: right;
}

.footer-bottom .legal-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.legal-content h1 {
  margin-top: 12px;
  color: transparent;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.legal-content h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  color: var(--leaf);
}

.legal-content p {
  color: rgba(37, 35, 30, 0.74);
  font-size: 1.05rem;
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.floating-contact-icon {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 253, 246, 0.34), transparent 1.35rem),
    linear-gradient(135deg, var(--green) 0%, var(--leaf) 48%, var(--turmeric) 100%);
  border: 1px solid rgba(255, 253, 246, 0.44);
  box-shadow:
    0 20px 48px rgba(14, 58, 36, 0.34),
    0 8px 18px rgba(217, 119, 6, 0.2),
    inset 0 1px 0 rgba(255, 253, 246, 0.34);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-contact-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
}

.floating-contact-icon:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow:
    0 26px 58px rgba(14, 58, 36, 0.42),
    0 12px 24px rgba(217, 119, 6, 0.25),
    inset 0 1px 0 rgba(255, 253, 246, 0.42);
}

.option-one.is-past-hero .floating-contact-icon {
  opacity: 1;
  pointer-events: auto;
}

.products-page {
  background:
    radial-gradient(circle at 10% 2%, rgba(232, 161, 26, 0.18), transparent 22rem),
    radial-gradient(circle at 92% 8%, rgba(31, 138, 58, 0.14), transparent 20rem),
    linear-gradient(180deg, #fff8e6 0%, var(--paper) 34%, #f8ead2 100%);
}

.products-page .products-hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  padding: clamp(34px, 5vw, 68px) max(20px, calc((100vw - 1312px) / 2)) clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(232, 161, 26, 0.3), transparent 22rem),
    radial-gradient(circle at 82% 64%, rgba(183, 51, 44, 0.24), transparent 22rem),
    linear-gradient(135deg, #0e3a24 0%, #161711 48%, #312719 100%);
  color: var(--paper);
}

.products-page .products-hero .hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.products-page .products-hero .hero-actions .button {
  flex: 0 1 270px;
  min-width: max-content;
  width: auto;
}

.products-page .products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 246, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
}

.products-hero-copy {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 18px;
  filter:
    drop-shadow(0 24px 38px rgba(0, 0, 0, 0.38))
    drop-shadow(0 2px 0 rgba(14, 58, 36, 0.26));
}

.products-page .reveal {
  opacity: 1;
  transform: none;
}

.products-hero-copy h1,
.products-page .products-section-head h2,
.products-page .products-final-cta h2 {
  color: transparent;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.products-hero-copy h1,
.products-page .products-final-cta h2 {
  background: linear-gradient(92deg, #fffdf6 0%, #9fdc74 30%, #f0b52a 66%, #ef6b38 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.products-hero-copy h1 {
  max-width: 760px;
  overflow: visible;
  font-size: clamp(2.55rem, 4.05vw, 4.25rem);
  line-height: 1.03;
}

.products-hero-copy p:not(.eyebrow),
.products-page .products-final-cta p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 253, 246, 0.84);
  font-size: clamp(1rem, 1.22vw, 1.14rem);
}

.products-texture-board {
  position: relative;
  min-height: 560px;
  filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.34));
}

.products-texture-board figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 246, 0.52);
  border-radius: 10px;
  background: rgba(255, 253, 246, 0.12);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.2),
    0 0 0 10px rgba(255, 253, 246, 0.08);
}

.products-texture-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.04);
  animation: productImageSlowZoom 20s ease-in-out infinite alternate;
}

.products-texture-board .texture-large {
  inset: 9% 22% auto 0;
  height: 305px;
  transform: rotate(-1.6deg);
}

.products-texture-board figure:nth-child(2) {
  right: 0;
  top: 0;
  width: 42%;
  height: 210px;
  transform: rotate(1.2deg);
}

.products-texture-board figure:nth-child(3) {
  left: 8%;
  bottom: 0;
  width: 36%;
  height: 210px;
  transform: rotate(1.8deg);
}

.products-texture-board figure:nth-child(4) {
  right: 8%;
  bottom: 8%;
  width: 43%;
  height: 250px;
  transform: rotate(-1deg);
}

.products-texture-board figure:nth-child(5) {
  right: 28%;
  top: 43%;
  width: 30%;
  height: 180px;
  transform: rotate(2.3deg);
}

.products-section {
  position: relative;
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
}

.product-category-section::before {
  content: "";
  display: block;
  width: min(760px, calc(100vw - 40px));
  height: 1px;
  margin: 0 auto 10px;
  background: linear-gradient(90deg, transparent, rgba(232, 161, 26, 0.48), rgba(31, 138, 58, 0.44), rgba(183, 51, 44, 0.3), transparent);
  box-shadow: 0 10px 24px rgba(232, 161, 26, 0.16);
}

.products-section-head {
  max-width: 880px;
  margin: 0 auto 32px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.products-section-head p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: rgba(37, 35, 30, 0.72);
  font-size: clamp(1rem, 1.14vw, 1.08rem);
  text-shadow: 0 1px 0 rgba(255, 253, 246, 0.82);
}

.products-page .product-category-section,
.products-page .requirement-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 161, 26, 0.22), transparent 18rem),
    radial-gradient(circle at 82% 68%, rgba(183, 51, 44, 0.18), transparent 18rem),
    linear-gradient(135deg, #25231e, #0e3a24 120%);
  color: var(--paper);
}

.products-page .product-category-section .products-section-head p:not(.eyebrow),
.products-page .requirement-section .products-section-head p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.76);
  text-shadow: 0 1px 0 rgba(14, 58, 36, 0.58);
}

.products-page .format-section,
.products-page .enquiry-guide-section {
  background:
    radial-gradient(circle at 14% 20%, rgba(232, 161, 26, 0.14), transparent 20rem),
    radial-gradient(circle at 88% 50%, rgba(31, 138, 58, 0.1), transparent 20rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0.55), rgba(251, 246, 234, 0.92));
}

.category-browser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(255, 253, 246, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 90% 12%, rgba(232, 161, 26, 0.16), transparent 9rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.13), rgba(255, 253, 246, 0.045));
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 253, 246, 0.12);
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  align-items: center;
  gap: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 161, 26, 0.32);
  box-shadow:
    0 34px 76px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 253, 246, 0.16);
}

.category-card:focus-visible {
  outline: 3px solid rgba(232, 161, 26, 0.52);
  outline-offset: 4px;
}

.category-number {
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(255, 253, 246, 0.12);
  font: 750 clamp(3rem, 6vw, 5.2rem) / 1 var(--font-display);
}

.category-card figure {
  position: relative;
  min-height: 220px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.2),
    0 0 0 7px rgba(255, 253, 246, 0.08);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: categoryCarousel 15s ease-in-out infinite;
}

.category-card img:nth-child(2) {
  animation-delay: 5s;
}

.category-card img:nth-child(3) {
  animation-delay: 10s;
}

.category-card > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 8px 6px 8px 0;
}

.category-card h3 {
  max-width: 82%;
  color: var(--paper);
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.category-card p {
  margin: 0;
  color: rgba(255, 253, 246, 0.74);
}

.spec-groups {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.spec-groups > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.spec-groups span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 253, 246, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.1), rgba(232, 161, 26, 0.08)),
    rgba(255, 253, 246, 0.05);
  color: rgba(255, 253, 246, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.12);
}

.spec-groups .spec-label {
  border-color: rgba(232, 161, 26, 0.26);
  background: linear-gradient(135deg, rgba(232, 161, 26, 0.18), rgba(183, 51, 44, 0.12));
  color: #f0b52a;
  font: 800 0.72rem / 1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes categoryCarousel {
  0%, 26% {
    opacity: 1;
    transform: scale(1.04);
  }

  33%, 93% {
    opacity: 0;
    transform: scale(1.11);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.format-grid,
.requirement-grid,
.enquiry-guide {
  display: grid;
  gap: 16px;
}

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

.format-grid article,
.requirement-grid article,
.enquiry-guide article {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(37, 35, 30, 0.08);
  box-shadow:
    0 22px 50px rgba(37, 35, 30, 0.1),
    inset 0 1px 0 rgba(255, 253, 246, 0.86);
}

.format-grid article {
  min-height: 290px;
  padding: 22px 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(232, 161, 26, 0.22), transparent 7rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.96), rgba(251, 246, 234, 0.64));
  display: grid;
  align-content: start;
  gap: 12px;
}

.format-grid article::before,
.requirement-grid article::before,
.solution-card-grid article::before,
.buyer-type-grid article::before,
.consistency-grid article::before,
.connect-option-grid article::before,
.next-step-grid article::before {
  content: "";
  width: 42px;
  height: 42px;
  border-radius: 56% 44% 58% 42% / 46% 58% 42% 54%;
  background:
    radial-gradient(circle at 64% 32%, rgba(255, 253, 246, 0.86) 0 4px, transparent 5px),
    linear-gradient(135deg, var(--green), var(--saffron) 62%, var(--chilli));
  box-shadow:
    0 14px 28px rgba(217, 119, 6, 0.18),
    inset 0 1px 0 rgba(255, 253, 246, 0.38);
  transform: rotate(-8deg);
}

.format-grid h3,
.requirement-grid h3,
.enquiry-guide h3 {
  color: var(--leaf);
  font-size: 1.25rem;
}

.format-grid p,
.requirement-grid p,
.enquiry-guide p {
  margin: 0;
  color: rgba(37, 35, 30, 0.7);
}

.format-grid span,
.requirement-grid strong {
  color: var(--green);
  font-weight: 900;
}

.format-cta {
  margin: 26px auto 0;
  display: flex;
  width: max-content;
}

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

.requirement-grid article {
  min-height: 300px;
  padding: 22px 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 253, 246, 0.16), transparent 8rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.13), rgba(255, 253, 246, 0.045));
  display: grid;
  align-content: start;
  gap: 12px;
}

.requirement-grid h3 {
  color: var(--paper);
}

.requirement-grid p {
  color: rgba(255, 253, 246, 0.72);
}

.requirement-grid strong {
  color: #f0b52a;
  line-height: 1.4;
}

.requirement-grid a,
.category-card .tile-cta {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.1);
  color: var(--paper);
  font-weight: 900;
  line-height: 1.18;
  white-space: normal;
  box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.14);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.requirement-grid a:hover,
.category-card .tile-cta:hover {
  color: var(--leaf);
  background: linear-gradient(135deg, #fffdf6, #f0d18b);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.enquiry-guide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.enquiry-guide article {
  min-height: 0;
  padding: 14px 16px;
  background:
    radial-gradient(circle at 86% 12%, rgba(31, 138, 58, 0.14), transparent 7rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.95), rgba(251, 246, 234, 0.68));
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.enquiry-guide span {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--paper);
  background: linear-gradient(135deg, var(--green), var(--turmeric));
  box-shadow:
    0 12px 24px rgba(31, 138, 58, 0.18),
    inset 0 1px 0 rgba(255, 253, 246, 0.28);
  font: 800 0.78rem / 1 var(--font-mono);
}

.enquiry-guide article::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 52px;
  bottom: 14px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(31, 138, 58, 0.28), rgba(232, 161, 26, 0.08));
}

.enquiry-guide h3 {
  font-size: 1.12rem;
}

.enquiry-guide p {
  font-size: 0.94rem;
  line-height: 1.38;
}

.requirement-note {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  padding: 20px;
  border: 1px solid rgba(37, 35, 30, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.92), rgba(232, 161, 26, 0.14)),
    var(--paper);
  box-shadow: 0 24px 60px rgba(37, 35, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.requirement-note p {
  margin: 0;
  color: rgba(37, 35, 30, 0.72);
  font-weight: 700;
}

.requirement-note .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.products-final-cta {
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 161, 26, 0.24), transparent 18rem),
    radial-gradient(circle at 82% 64%, rgba(31, 138, 58, 0.3), transparent 20rem),
    linear-gradient(145deg, #0e3a24, #221f19 78%);
  color: var(--paper);
}

.products-final-inner {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: center;
  gap: clamp(20px, 5vw, 72px);
}

.products-final-inner > div:first-child {
  display: grid;
  gap: 16px;
}

.products-final-inner .hero-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.products-final-inner .button {
  width: 100%;
}

@media (max-width: 980px) {
  .products-page .products-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .products-texture-board {
    min-height: 430px;
    order: -1;
  }

  .products-texture-board .texture-large {
    inset: 12% 18% auto 0;
    height: 245px;
  }

  .products-texture-board figure:nth-child(2) {
    width: 42%;
    height: 170px;
  }

  .products-texture-board figure:nth-child(3) {
    width: 40%;
    height: 170px;
  }

  .products-texture-board figure:nth-child(4) {
    width: 44%;
    height: 190px;
  }

  .products-texture-board figure:nth-child(5) {
    width: 34%;
    height: 150px;
  }

  .category-browser {
    grid-template-columns: 1fr;
  }

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

  .category-card {
    min-height: 0;
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  }

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

  .site-header {
    justify-content: space-between;
    position: sticky;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav,
  .option-one .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(255, 253, 246, 0.72);
    border-radius: 18px;
    background:
      radial-gradient(circle at 12% 0%, rgba(232, 161, 26, 0.18), transparent 15rem),
      radial-gradient(circle at 92% 20%, rgba(31, 138, 58, 0.2), transparent 13rem),
      linear-gradient(145deg, rgba(255, 253, 246, 0.96), rgba(251, 246, 234, 0.9));
    box-shadow:
      0 28px 70px rgba(17, 17, 14, 0.22),
      inset 0 1px 0 rgba(255, 253, 246, 0.95);
    backdrop-filter: blur(20px) saturate(1.18);
    -webkit-backdrop-filter: blur(20px) saturate(1.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .site-header.nav-open .main-nav,
  .option-one .site-header.nav-open .main-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a,
  .option-one .main-nav a {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: var(--leaf);
    font-size: 0.96rem;
    background: rgba(255, 253, 246, 0.52);
  }

  .nav-product-group {
    display: grid;
    grid-template-columns: 1fr 46px;
    gap: 6px;
    align-items: stretch;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-product-group:hover,
  .nav-product-group:focus-within,
  .nav-product-group.submenu-open {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .nav-product-group::after {
    display: none;
  }

  .nav-product-link,
  .option-one .main-nav .nav-product-link {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: var(--leaf);
    background: rgba(255, 253, 246, 0.52);
  }

  .nav-product-group:hover .nav-product-link,
  .nav-product-group:focus-within .nav-product-link,
  .nav-product-group.submenu-open .nav-product-link {
    color: var(--leaf);
  }

  .submenu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 253, 246, 0.58);
    box-shadow: none;
  }

  .product-submenu {
    grid-column: 1 / -1;
    position: static;
    width: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background:
      radial-gradient(circle at 10% 0%, rgba(232, 161, 26, 0.16), transparent 10rem),
      linear-gradient(145deg, rgba(14, 58, 36, 0.08), rgba(255, 253, 246, 0.52));
    box-shadow: inset 0 1px 0 rgba(255, 253, 246, 0.72);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height 180ms ease, padding 180ms ease;
  }

  .product-submenu::before {
    display: none;
  }

  .nav-product-group:hover .product-submenu,
  .nav-product-group:focus-within .product-submenu {
    max-height: 0;
    padding: 0;
    transform: none;
  }

  .nav-product-group.submenu-open .product-submenu {
    max-height: 420px;
    padding: 8px;
  }

  .product-submenu a,
  .option-one .product-submenu a {
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    color: var(--leaf);
    font-size: 0.9rem;
    background: rgba(255, 253, 246, 0.62);
  }

  .product-submenu a:hover,
  .product-submenu a:focus-visible,
  .option-one .product-submenu a:hover,
  .option-one .product-submenu a:focus-visible {
    color: var(--paper);
    background: linear-gradient(135deg, var(--leaf), var(--green) 64%, #68a83d);
    transform: none;
  }

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

  .main-nav a:hover,
  .option-one .main-nav a:hover {
    color: var(--paper);
    background: linear-gradient(135deg, var(--leaf), var(--green) 64%, #68a83d);
    transform: none;
  }

  .hero-grid,
  .split-section,
  .credibility-section,
  .rfq-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .trust-strip,
  .process-line,
  .capability-grid,
  .quality-stage-grid,
  .option-one .image-story,
  .buyer-grid,
  .option-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-proof {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quality-proof div {
    justify-content: center;
  }

  .section-head {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-products,
  .footer-company,
  .footer-contact,
  .footer-bottom {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .products-page .products-hero,
  .products-section,
  .products-final-cta {
    padding-inline: 16px;
  }

  .products-page .products-hero {
    min-height: calc(100svh - 122px);
    padding-block: 42px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background:
      radial-gradient(circle at 16% 18%, rgba(232, 161, 26, 0.32), transparent 18rem),
      radial-gradient(circle at 86% 70%, rgba(183, 51, 44, 0.24), transparent 18rem),
      linear-gradient(135deg, #0e3a24 0%, #11110e 52%, #2d2117 100%);
  }

  .products-page .products-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(14, 58, 36, 0.64) 0%, rgba(17, 17, 14, 0.74) 46%, rgba(17, 17, 14, 0.88) 100%),
      radial-gradient(circle at 50% 42%, rgba(232, 161, 26, 0.18), transparent 16rem);
    pointer-events: none;
  }

  .products-hero-copy h1 {
    font-size: clamp(2.26rem, 11vw, 3.15rem);
  }

  .products-hero-copy,
  .products-final-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .products-hero-copy {
    order: -1;
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    padding-top: 0;
    filter:
      drop-shadow(0 30px 48px rgba(0, 0, 0, 0.5))
      drop-shadow(0 2px 0 rgba(14, 58, 36, 0.32));
  }

  .products-hero-copy p:not(.eyebrow),
  .products-page .products-final-cta p {
    text-align: center;
  }

  .products-texture-board {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    width: 100%;
    display: block;
    filter: none;
    opacity: 0.92;
    pointer-events: none;
  }

  .products-texture-board .texture-large,
  .products-texture-board figure,
  .products-texture-board figure:nth-child(2),
  .products-texture-board figure:nth-child(3),
  .products-texture-board figure:nth-child(4) {
    position: absolute;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
    box-shadow: none;
  }

  .products-texture-board .texture-large {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .products-texture-board figure:nth-child(2) {
    right: -18%;
    top: -6%;
    width: 58%;
    height: 31%;
    opacity: 0.82;
  }

  .products-texture-board figure:nth-child(3) {
    left: -18%;
    bottom: -5%;
    width: 55%;
    height: 30%;
    opacity: 0.76;
  }

  .products-texture-board figure:nth-child(4) {
    right: -14%;
    bottom: 7%;
    width: 56%;
    height: 30%;
    opacity: 0.76;
  }

  .products-texture-board img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.04);
  }

  .products-texture-board figure:nth-child(5) {
    display: none;
  }

  .products-page .hero-actions,
  .products-page .hero-actions .button,
  .requirement-note .button {
    width: 100%;
  }

  .products-page .products-hero .hero-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .products-page .products-hero .hero-actions .button {
    flex: 0 0 auto;
    min-width: 0;
    width: min(100%, 300px);
    padding-inline: 14px;
    font-size: 0.86rem;
    line-height: 1.12;
    white-space: nowrap;
  }

  .products-page .button {
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .category-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .category-card figure {
    min-height: 210px;
  }

  .category-card > div {
    padding: 8px 4px 4px;
  }

  .category-card h3 {
    max-width: calc(100% - 72px);
  }

  .format-grid,
  .requirement-grid,
  .enquiry-guide {
    grid-template-columns: 1fr;
  }

  .format-grid article,
  .requirement-grid article,
  .enquiry-guide article {
    min-height: 0;
  }

  .requirement-note {
    display: grid;
    text-align: center;
  }

  .requirement-note .button {
    width: max-content;
    max-width: 100%;
    padding-inline: 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand img {
    width: 174px;
    max-height: 50px;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    padding: 30px 16px 54px;
  }

  .option-one .hero-grid {
    position: relative;
    min-height: calc(100svh - 122px);
    place-items: center;
    padding: 24px 16px 22px;
  }

  .option-one .hero-grid .hero-media {
    display: none;
  }

  .option-one .hero-bg {
    object-position: center center;
  }

  .option-one .hero-grid .hero-copy {
    position: relative;
    z-index: 1;
    align-self: center;
    background: transparent;
  }

  .option-one .hero-grid .floating-proof {
    display: none;
  }

  h1 {
    font-size: clamp(2.28rem, 11vw, 3.15rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

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

  .hero-copy {
    gap: 14px;
  }

  .hero-certifications {
    width: 100%;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 5px;
  }

  .hero-certifications figure {
    width: min(31%, 104px);
    gap: 6px;
  }

  .hero-certifications img {
    width: clamp(89px, 25vw, 107px);
  }

  .hero-certifications figcaption {
    font-size: 0.64rem;
  }

  .trust-strip,
  .process-line,
  .capability-grid,
  .quality-stage-grid,
  .buyer-grid,
  .option-links {
    grid-template-columns: 1fr;
  }

  .option-one .trust-strip {
    width: calc(100% - 24px);
    grid-template-columns: repeat(4, minmax(260px, 78vw));
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 14px 12px 18px;
  }

  .option-one .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .option-one .trust-strip article {
    min-height: 162px;
    scroll-snap-align: start;
    border-bottom: 0;
  }

  .option-one #solutions .buyer-grid {
    grid-template-columns: repeat(4, minmax(265px, 78vw));
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px 2px 18px;
  }

  .option-one #solutions .buyer-grid::-webkit-scrollbar {
    display: none;
  }

  .option-one #solutions .buyer-grid div {
    min-height: 245px;
    scroll-snap-align: start;
  }

  .option-one #solutions .buyer-grid strong {
    font-size: 1.02rem;
    line-height: 1.2;
  }

  .section,
  .process-section,
  .split-section,
  .comparison-section,
  .credibility-section,
  .rfq-section,
  .buyer-section {
    width: calc(100% - 32px);
    padding: 62px 0;
  }

  .process-section,
  .credibility-section {
    width: 100%;
    padding-inline: 16px;
  }

  .option-one .quality-process-section,
  .option-one .spice-rfq {
    padding-top: 44px;
    padding-bottom: 46px;
  }

  .product-tile {
    min-height: 280px;
  }

  .option-one .product-tile {
    min-height: 0;
    overflow: visible;
  }

  .option-one .tile-photo {
    aspect-ratio: 16 / 10;
  }

  .option-one .image-story {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding-bottom: 62px;
  }

  .option-one .story-card,
  .option-one .story-card.large {
    min-height: 320px;
  }

  .pack-grid {
    grid-template-columns: 1fr;
  }

  .floating-contact-icon {
    right: 12px;
    bottom: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 42px 16px 86px;
  }

  .footer-brand,
  .footer-products,
  .footer-company,
  .footer-contact,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-bottom p,
  .footer-bottom p:nth-child(2),
  .footer-bottom p:nth-child(3) {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .option-card,
  .button,
  .product-tile {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .option-one .tile-photo img {
    animation: none;
    transform: scale(1.04);
  }

  .category-card img,
  .category-product-carousel img {
    animation: none;
    opacity: 1;
  }

  .category-card img:not(:first-child),
  .category-product-carousel img:not(:first-child) {
    display: none;
  }

  .carousel-indicator {
    display: none;
  }
}

@media (min-width: 981px) {
  .option-one #company {
    align-items: start;
    padding-top: clamp(54px, 6vw, 82px);
    padding-bottom: 10px;
  }

  .option-one .product-tile {
    min-height: 310px;
  }

  .option-one #solutions .buyer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Products page final overrides: keep category rows and chips from falling back to generic card styling. */
.products-page .product-category-section .category-browser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.products-page .product-category-section .category-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  align-items: center;
  gap: 20px;
}

.products-page .product-category-section .category-carousel {
  position: relative;
  min-height: 220px;
}

.products-page .product-category-section .onion-carousel img {
  animation: onionCarousel 28s ease-in-out infinite;
}

.products-page .product-category-section .onion-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .onion-carousel img:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .onion-carousel img:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .onion-carousel img:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .onion-carousel img:nth-child(5) {
  animation-delay: 16s;
}

.products-page .product-category-section .onion-carousel img:nth-child(6) {
  animation-delay: 20s;
}

.products-page .product-category-section .onion-carousel img:nth-child(7) {
  animation-delay: 24s;
}

.products-page .product-category-section .garlic-carousel img {
  animation: garlicCarousel 16s ease-in-out infinite;
}

.products-page .product-category-section .garlic-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .garlic-carousel img:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .garlic-carousel img:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .garlic-carousel img:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .fried-carousel img,
.products-page .product-category-section .ginger-carousel img {
  animation: twoSlideCarousel 8s ease-in-out infinite;
}

.products-page .product-category-section .fried-carousel img:nth-child(1),
.products-page .product-category-section .ginger-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .fried-carousel img:nth-child(2),
.products-page .product-category-section .ginger-carousel img:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .vegetable-carousel img {
  animation: vegetableCarousel 32s ease-in-out infinite;
}

.products-page .product-category-section .vegetable-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .vegetable-carousel img:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .vegetable-carousel img:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .vegetable-carousel img:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .vegetable-carousel img:nth-child(5) {
  animation-delay: 16s;
}

.products-page .product-category-section .vegetable-carousel img:nth-child(6) {
  animation-delay: 20s;
}

.products-page .product-category-section .vegetable-carousel img:nth-child(7) {
  animation-delay: 24s;
}

.products-page .product-category-section .vegetable-carousel img:nth-child(8) {
  animation-delay: 28s;
}

.products-page .product-category-section .spices-carousel img {
  animation: spicesCarousel 24s ease-in-out infinite;
}

.products-page .product-category-section .spices-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .spices-carousel img:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .spices-carousel img:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .spices-carousel img:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .spices-carousel img:nth-child(5) {
  animation-delay: 16s;
}

.products-page .product-category-section .spices-carousel img:nth-child(6) {
  animation-delay: 20s;
}

.products-page .product-category-section .seasonings-carousel img {
  animation: seasoningsCarousel 24s ease-in-out infinite;
}

.products-page .product-category-section .seasonings-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .seasonings-carousel img:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .seasonings-carousel img:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .seasonings-carousel img:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .seasonings-carousel img:nth-child(5) {
  animation-delay: 16s;
}

.products-page .product-category-section .seasonings-carousel img:nth-child(6) {
  animation-delay: 20s;
}

.products-page .product-category-section .carousel-indicator {
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.products-page .product-category-section .carousel-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 246, 0.78);
  opacity: 0.86;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(14, 58, 36, 0.24);
  animation: onionDot 28s ease-in-out infinite;
}

.products-page .product-category-section .carousel-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .carousel-indicator span:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .carousel-indicator span:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .carousel-indicator span:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .carousel-indicator span:nth-child(5) {
  animation-delay: 16s;
}

.products-page .product-category-section .carousel-indicator span:nth-child(6) {
  animation-delay: 20s;
}

.products-page .product-category-section .carousel-indicator span:nth-child(7) {
  animation-delay: 24s;
}

.products-page .product-category-section .garlic-carousel .carousel-indicator span {
  animation: garlicDot 16s ease-in-out infinite;
}

.products-page .product-category-section .garlic-carousel .carousel-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .garlic-carousel .carousel-indicator span:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .garlic-carousel .carousel-indicator span:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .garlic-carousel .carousel-indicator span:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .fried-carousel .carousel-indicator span,
.products-page .product-category-section .ginger-carousel .carousel-indicator span {
  animation: twoSlideDot 8s ease-in-out infinite;
}

.products-page .product-category-section .fried-carousel .carousel-indicator span:nth-child(1),
.products-page .product-category-section .ginger-carousel .carousel-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .fried-carousel .carousel-indicator span:nth-child(2),
.products-page .product-category-section .ginger-carousel .carousel-indicator span:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span {
  animation: vegetableDot 32s ease-in-out infinite;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span:nth-child(5) {
  animation-delay: 16s;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span:nth-child(6) {
  animation-delay: 20s;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span:nth-child(7) {
  animation-delay: 24s;
}

.products-page .product-category-section .vegetable-carousel .carousel-indicator span:nth-child(8) {
  animation-delay: 28s;
}

.products-page .product-category-section .spices-carousel .carousel-indicator span {
  animation: spicesDot 24s ease-in-out infinite;
}

.products-page .product-category-section .spices-carousel .carousel-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .spices-carousel .carousel-indicator span:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .spices-carousel .carousel-indicator span:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .spices-carousel .carousel-indicator span:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .spices-carousel .carousel-indicator span:nth-child(5) {
  animation-delay: 16s;
}

.products-page .product-category-section .spices-carousel .carousel-indicator span:nth-child(6) {
  animation-delay: 20s;
}

.products-page .product-category-section .seasonings-carousel .carousel-indicator span {
  animation: seasoningsDot 24s ease-in-out infinite;
}

.products-page .product-category-section .seasonings-carousel .carousel-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.products-page .product-category-section .seasonings-carousel .carousel-indicator span:nth-child(2) {
  animation-delay: 4s;
}

.products-page .product-category-section .seasonings-carousel .carousel-indicator span:nth-child(3) {
  animation-delay: 8s;
}

.products-page .product-category-section .seasonings-carousel .carousel-indicator span:nth-child(4) {
  animation-delay: 12s;
}

.products-page .product-category-section .seasonings-carousel .carousel-indicator span:nth-child(5) {
  animation-delay: 16s;
}

.products-page .product-category-section .seasonings-carousel .carousel-indicator span:nth-child(6) {
  animation-delay: 20s;
}

.products-page .product-category-section .spec-groups {
  display: grid;
  gap: 8px;
}

.products-page .product-category-section .spec-groups > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.products-page .product-category-section .spec-groups span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 253, 246, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.12), rgba(232, 161, 26, 0.1)),
    rgba(255, 253, 246, 0.07);
  color: rgba(255, 253, 246, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.products-page .product-category-section .spec-groups > div:first-child span:not(.spec-label) {
  border-color: rgba(232, 161, 26, 0.34);
  background:
    linear-gradient(135deg, rgba(232, 161, 26, 0.28), rgba(183, 51, 44, 0.16)),
    rgba(255, 253, 246, 0.08);
  color: #fff3ca;
  box-shadow:
    0 8px 18px rgba(217, 119, 6, 0.12),
    inset 0 1px 0 rgba(255, 253, 246, 0.16);
}

.products-page .product-category-section .spec-groups > div:nth-child(2) span:not(.spec-label) {
  min-height: 24px;
  padding-block: 5px;
  border-color: rgba(31, 138, 58, 0.34);
  background:
    linear-gradient(90deg, rgba(31, 138, 58, 0.22), rgba(255, 253, 246, 0.07)),
    rgba(14, 58, 36, 0.2);
  color: rgba(255, 253, 246, 0.9);
}

.products-page .product-category-section .spec-groups .spec-label {
  color: #f0b52a;
  background: linear-gradient(135deg, rgba(232, 161, 26, 0.22), rgba(183, 51, 44, 0.14));
  border-color: rgba(232, 161, 26, 0.32);
  font: 800 0.72rem / 1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes onionCarousel {
  0%, 11% {
    opacity: 1;
    transform: scale(1.04);
  }

  14%, 97% {
    opacity: 0;
    transform: scale(1.11);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes garlicCarousel {
  0%, 20% {
    opacity: 1;
    transform: scale(1.04);
  }

  25%, 95% {
    opacity: 0;
    transform: scale(1.11);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes twoSlideCarousel {
  0%, 42% {
    opacity: 1;
    transform: scale(1.04);
  }

  50%, 92% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes categoryProductCarousel {
  0%, 42% {
    opacity: 1;
    transform: scale(1.04);
  }

  50%, 92% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes vegetableCarousel {
  0%, 10% {
    opacity: 1;
    transform: scale(1.04);
  }

  13%, 97% {
    opacity: 0;
    transform: scale(1.11);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes spicesCarousel {
  0%, 14% {
    opacity: 1;
    transform: scale(1.04);
  }

  17%, 97% {
    opacity: 0;
    transform: scale(1.11);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes seasoningsCarousel {
  0%, 14% {
    opacity: 1;
    transform: scale(1.04);
  }

  17%, 97% {
    opacity: 0;
    transform: scale(1.11);
  }

  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes onionDot {
  0%, 11% {
    height: 18px;
    background: linear-gradient(90deg, #f0b52a, #d97706);
    opacity: 1;
  }

  14%, 100% {
    height: 8px;
    background: rgba(255, 253, 246, 0.78);
    opacity: 0.86;
  }
}

@keyframes garlicDot {
  0%, 20% {
    height: 18px;
    background: linear-gradient(180deg, #f0b52a, #d97706);
    opacity: 1;
  }

  25%, 100% {
    height: 8px;
    background: rgba(255, 253, 246, 0.78);
    opacity: 0.86;
  }
}

@keyframes twoSlideDot {
  0%, 42% {
    height: 18px;
    background: linear-gradient(180deg, #f0b52a, #d97706);
    opacity: 1;
  }

  50%, 100% {
    height: 8px;
    background: rgba(255, 253, 246, 0.78);
    opacity: 0.86;
  }
}

@keyframes categoryProductDot {
  0%, 42% {
    height: 18px;
    background: linear-gradient(180deg, #f0b52a, #d97706);
    opacity: 1;
  }

  50%, 100% {
    height: 9px;
    background: rgba(255, 253, 246, 0.78);
    opacity: 0.86;
  }
}

@keyframes vegetableDot {
  0%, 10% {
    height: 18px;
    background: linear-gradient(180deg, #9fdc74, #1f8a3a);
    opacity: 1;
  }

  13%, 100% {
    height: 8px;
    background: rgba(255, 253, 246, 0.78);
    opacity: 0.86;
  }
}

@keyframes spicesDot {
  0%, 14% {
    height: 18px;
    background: linear-gradient(180deg, #f0b52a, #b7332c);
    opacity: 1;
  }

  17%, 100% {
    height: 8px;
    background: rgba(255, 253, 246, 0.78);
    opacity: 0.86;
  }
}

@keyframes seasoningsDot {
  0%, 14% {
    height: 18px;
    background: linear-gradient(180deg, #e8a11a, #b7332c);
    opacity: 1;
  }

  17%, 100% {
    height: 8px;
    background: rgba(255, 253, 246, 0.78);
    opacity: 0.86;
  }
}

@media (max-width: 640px) {
  .products-page .product-category-section .category-card {
    grid-template-columns: 1fr;
  }
}

/* About page */
.about-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(232, 161, 26, 0.18), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(31, 138, 58, 0.16), transparent 22rem),
    linear-gradient(180deg, #fff8e6 0%, var(--paper) 32%, #f8ead2 100%);
}

.about-page .reveal {
  opacity: 1;
  transform: none;
}

.about-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 86px);
  padding: clamp(90px, 12vh, 132px) max(20px, calc((100vw - 1312px) / 2)) clamp(64px, 9vh, 96px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--leaf);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.04);
  animation: productImageSlowZoom 22s ease-in-out infinite alternate;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 24%, rgba(232, 161, 26, 0.24), transparent 24rem),
    radial-gradient(circle at 82% 72%, rgba(183, 51, 44, 0.28), transparent 24rem),
    linear-gradient(90deg, rgba(14, 58, 36, 0.9) 0%, rgba(17, 17, 14, 0.78) 48%, rgba(17, 17, 14, 0.44) 100%);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 246, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
}

.about-hero-copy {
  width: min(760px, 100%);
  display: grid;
  gap: 18px;
  filter:
    drop-shadow(0 30px 48px rgba(0, 0, 0, 0.48))
    drop-shadow(0 2px 0 rgba(14, 58, 36, 0.32));
}

.about-hero-copy h1,
.founder-section-head h2,
.about-section-head h2,
.location-copy h2,
.relationship-copy h2,
.about-final-inner h2 {
  color: transparent;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-hero-copy h1,
.about-final-inner h2 {
  background: linear-gradient(92deg, #fffdf6 0%, #9fdc74 30%, #f0b52a 66%, #ef6b38 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 5.8vw, 6.15rem);
  line-height: 0.96;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 253, 246, 0.86);
  font-size: clamp(1rem, 1.24vw, 1.15rem);
}

.about-section {
  position: relative;
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px) clamp(28px, 6vw, 84px);
  background:
    radial-gradient(circle at 16% 18%, rgba(232, 161, 26, 0.18), transparent 18rem),
    radial-gradient(circle at 86% 60%, rgba(31, 138, 58, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0.7), rgba(251, 246, 234, 0.95));
}

.partner-section {
  background:
    radial-gradient(circle at 12% 64%, rgba(31, 138, 58, 0.14), transparent 19rem),
    radial-gradient(circle at 88% 22%, rgba(232, 161, 26, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(251, 246, 234, 0.98), rgba(255, 253, 246, 0.74));
}

.founder-section-head {
  grid-column: 1 / -1;
  width: min(940px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
  filter:
    drop-shadow(0 22px 34px rgba(17, 17, 14, 0.08))
    drop-shadow(0 1px 0 rgba(255, 253, 246, 0.7));
}

.founder-portrait {
  position: relative;
  margin: 0;
  border-radius: 10px;
  isolation: isolate;
  filter: drop-shadow(0 34px 58px rgba(17, 17, 14, 0.28));
}

.founder-portrait::before {
  content: "";
  position: absolute;
  inset: 18px -16px -18px 16px;
  z-index: -1;
  border: 1px solid rgba(232, 161, 26, 0.3);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(31, 138, 58, 0.18), rgba(232, 161, 26, 0.18));
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.founder-portrait img {
  aspect-ratio: 4 / 5;
  object-position: 45% center;
  box-shadow:
    0 32px 72px rgba(17, 17, 14, 0.2),
    inset 0 1px 0 rgba(255, 253, 246, 0.4);
}

.partner-portrait img {
  object-position: center 28%;
}

.founder-copy,
.location-copy,
.relationship-copy {
  display: grid;
  gap: 14px;
  filter:
    drop-shadow(0 22px 34px rgba(17, 17, 14, 0.08))
    drop-shadow(0 1px 0 rgba(255, 253, 246, 0.7));
}

.founder-section-head h2,
.location-copy h2,
.relationship-copy h2,
.about-section-head h2,
.about-final-inner h2 {
  max-width: 900px;
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

.founder-copy p,
.location-copy p,
.relationship-copy p,
.about-section-head p,
.about-final-inner p {
  margin: 0;
  color: rgba(37, 35, 30, 0.74);
  font-size: clamp(1rem, 1.12vw, 1.09rem);
}

.founder-intro {
  width: auto;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 3px;
}

.founder-intro strong {
  color: var(--leaf);
  font-weight: 900;
}

.founder-intro span {
  color: rgba(37, 35, 30, 0.66);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 800;
}

.founder-copy blockquote {
  margin: 8px 0 0;
  padding: 20px;
  border-left: 4px solid var(--saffron);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(31, 138, 58, 0.08), rgba(232, 161, 26, 0.14)),
    rgba(255, 253, 246, 0.78);
  color: var(--leaf);
  font: 650 clamp(1.18rem, 2vw, 1.55rem) / 1.28 var(--font-display);
  box-shadow: 0 20px 46px rgba(17, 17, 14, 0.1);
}

.approach-section,
.relationships-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 161, 26, 0.22), transparent 18rem),
    radial-gradient(circle at 82% 68%, rgba(183, 51, 44, 0.18), transparent 18rem),
    linear-gradient(135deg, #25231e, #0e3a24 120%);
  color: var(--paper);
}

.about-section-head {
  max-width: 930px;
  margin: 0 auto 26px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.approach-section .about-section-head p,
.relationships-section .relationship-copy p {
  color: rgba(255, 253, 246, 0.76);
}

.approach-section .about-section-head p {
  text-shadow: 0 1px 0 rgba(14, 58, 36, 0.58);
}

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

.approach-steps article,
.relationship-cards article,
.location-proof div {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 246, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 12%, rgba(232, 161, 26, 0.18), transparent 8rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.13), rgba(255, 253, 246, 0.045));
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 253, 246, 0.12);
  display: grid;
  align-content: start;
  gap: 10px;
}

.approach-steps article span,
.relationship-cards article span,
.solution-card-grid span,
.supply-path span,
.quality-process-flow span,
.contact-option-grid span,
.next-steps-grid span {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 58% 42% 55% 45% / 48% 60% 40% 52%;
  color: var(--paper);
  background:
    radial-gradient(circle at 68% 30%, rgba(255, 253, 246, 0.75) 0 3px, transparent 4px),
    linear-gradient(135deg, var(--green), var(--turmeric));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  font: 800 0.78rem / 1 var(--font-mono);
  transform: rotate(-7deg);
}

.approach-steps h3,
.relationship-cards h3 {
  color: var(--paper);
  font-size: 1.35rem;
}

.approach-steps p,
.relationship-cards p {
  margin: 0;
  color: rgba(255, 253, 246, 0.72);
}

.approach-cta {
  display: flex;
  justify-content: center;
  justify-self: center;
  width: max-content;
  margin: 24px auto 0;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  background:
    radial-gradient(circle at 16% 18%, rgba(232, 161, 26, 0.16), transparent 18rem),
    radial-gradient(circle at 88% 60%, rgba(31, 138, 58, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0.7), rgba(251, 246, 234, 0.95));
}

.location-image {
  position: relative;
  margin: 0;
  border-radius: 12px;
  filter: drop-shadow(0 34px 58px rgba(17, 17, 14, 0.22));
}

.location-image::before {
  content: "";
  position: absolute;
  inset: 18px -14px -18px 14px;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31, 138, 58, 0.34), rgba(232, 161, 26, 0.24));
  filter: blur(18px);
}

.location-image img {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(37, 35, 30, 0.1);
  border-radius: 12px;
  object-fit: cover;
  box-shadow:
    0 30px 70px rgba(17, 17, 14, 0.2),
    inset 0 1px 0 rgba(255, 253, 246, 0.46);
}

.relationships-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.relationship-video {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 34px 78px rgba(0, 0, 0, 0.28),
    0 0 0 8px rgba(255, 253, 246, 0.08);
}

.relationship-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.relationships-section .relationship-copy {
  filter: none;
}

.relationships-section .relationship-copy h2 {
  overflow: visible;
  padding-bottom: 0.08em;
  line-height: 1.04;
}

.relationships-section .relationship-copy p {
  text-shadow: none;
}

.relationship-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.relationship-cards article {
  min-height: 180px;
}

.about-final-cta {
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 161, 26, 0.24), transparent 18rem),
    radial-gradient(circle at 82% 64%, rgba(31, 138, 58, 0.3), transparent 20rem),
    linear-gradient(145deg, #0e3a24, #221f19 78%);
  color: var(--paper);
}

.about-final-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  align-items: center;
  gap: 14px clamp(28px, 5vw, 72px);
  filter:
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.24))
    drop-shadow(0 1px 0 rgba(14, 58, 36, 0.4));
}

.about-final-inner > .eyebrow,
.about-final-inner > h2,
.about-final-inner > p:not(.eyebrow) {
  grid-column: 1;
}

.about-final-inner > p:not(.eyebrow) {
  max-width: 690px;
}

.about-final-inner p {
  color: rgba(255, 253, 246, 0.82);
}

.about-final-inner .hero-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
  width: 100%;
  display: grid;
  gap: 12px;
}

.about-final-inner .button {
  width: 100%;
}

@media (max-width: 980px) {
  .founder-section,
  .location-section,
  .relationships-section {
    grid-template-columns: 1fr;
  }

  .founder-portrait img {
    aspect-ratio: 16 / 11;
  }

  .approach-steps,
  .relationship-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-hero,
  .about-section,
  .about-final-cta {
    padding-inline: 16px;
  }

  .about-hero {
    min-height: calc(100svh - 122px);
    padding-block: 42px 22px;
    align-items: start;
    text-align: center;
  }

  .about-hero::before {
    background:
      linear-gradient(180deg, rgba(14, 58, 36, 0.62) 0%, rgba(17, 17, 14, 0.78) 48%, rgba(17, 17, 14, 0.9) 100%),
      radial-gradient(circle at 50% 34%, rgba(232, 161, 26, 0.2), transparent 16rem);
  }

  .about-hero-copy {
    justify-items: center;
    margin: 0 auto;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
  }

  .about-hero-copy .hero-actions,
  .about-final-inner .hero-actions {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .about-hero-copy .button,
  .about-final-inner .button {
    width: min(100%, 310px);
    justify-self: center;
    white-space: nowrap;
  }

  .founder-copy,
  .location-copy,
  .relationship-copy,
  .about-final-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-final-inner > .eyebrow,
  .about-final-inner > h2,
  .about-final-inner > p:not(.eyebrow) {
    grid-column: auto;
  }

  .founder-copy h2,
  .location-copy h2,
  .relationship-copy h2,
  .about-section-head h2,
  .about-final-inner h2 {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

  .founder-portrait::before {
    inset: 12px -8px -12px 8px;
  }

  .founder-portrait img {
    aspect-ratio: 4 / 5;
    object-position: 45% center;
  }

  .approach-steps,
  .relationship-cards {
    grid-template-columns: 1fr;
  }

  .approach-steps article,
  .relationship-cards article,
  .location-image img {
    min-height: 0;
  }

  .relationship-video {
    aspect-ratio: auto;
  }

  .location-image img {
    min-height: 240px;
  }
}

/* Solutions page */
.solutions-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(232, 161, 26, 0.18), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(31, 138, 58, 0.16), transparent 22rem),
    linear-gradient(180deg, #fff8e6 0%, var(--paper) 32%, #f8ead2 100%);
}

.solutions-page .reveal {
  opacity: 1;
  transform: none;
}

.solutions-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 86px);
  padding: clamp(84px, 11vh, 124px) max(20px, calc((100vw - 1312px) / 2)) clamp(58px, 8vh, 90px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 18%, rgba(232, 161, 26, 0.28), transparent 22rem),
    radial-gradient(circle at 86% 70%, rgba(183, 51, 44, 0.24), transparent 22rem),
    linear-gradient(135deg, #0e3a24 0%, #11110e 52%, #332216 100%);
}

.solutions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 246, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
}

.solutions-hero-copy {
  display: grid;
  gap: 18px;
  filter:
    drop-shadow(0 30px 48px rgba(0, 0, 0, 0.48))
    drop-shadow(0 2px 0 rgba(14, 58, 36, 0.32));
}

.solutions-hero-copy h1,
.solutions-section-head h2,
.solutions-final-inner h2 {
  color: transparent;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.solutions-hero-copy h1,
.solutions-final-inner h2 {
  background: linear-gradient(92deg, #fffdf6 0%, #9fdc74 30%, #f0b52a 66%, #ef6b38 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.solutions-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.96;
}

.solutions-hero-copy p:not(.eyebrow),
.solutions-final-inner p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 253, 246, 0.84);
  font-size: clamp(1rem, 1.18vw, 1.13rem);
}

.solutions-hero-board {
  position: relative;
  min-height: 560px;
  filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.34));
}

.solutions-hero-board figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 246, 0.5);
  border-radius: 10px;
  background: rgba(255, 253, 246, 0.12);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.22),
    0 0 0 10px rgba(255, 253, 246, 0.08);
}

.solutions-hero-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
  animation: productImageSlowZoom 21s ease-in-out infinite alternate;
}

.solutions-hero-board .solution-hero-large {
  inset: 8% 18% auto 0;
  height: 320px;
  transform: rotate(-1.6deg);
}

.solutions-hero-board figure:nth-child(2) {
  right: 0;
  top: 0;
  width: 42%;
  height: 210px;
  transform: rotate(1.4deg);
}

.solutions-hero-board figure:nth-child(3) {
  left: 8%;
  bottom: 0;
  width: 38%;
  height: 210px;
  transform: rotate(1.6deg);
}

.solutions-hero-board figure:nth-child(4) {
  right: 6%;
  bottom: 7%;
  width: 44%;
  height: 250px;
  transform: rotate(-1deg);
}

.solutions-section {
  position: relative;
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
}

.solutions-section-head {
  width: min(980px, 100%);
  margin: 0 auto 26px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.solutions-section-head h2 {
  max-width: 980px;
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

.solutions-section-head p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: rgba(37, 35, 30, 0.72);
  font-size: clamp(1rem, 1.14vw, 1.08rem);
  text-shadow: 0 1px 0 rgba(255, 253, 246, 0.82);
}

.support-section,
.supply-path-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 161, 26, 0.22), transparent 18rem),
    radial-gradient(circle at 82% 68%, rgba(183, 51, 44, 0.18), transparent 18rem),
    linear-gradient(135deg, #25231e, #0e3a24 120%);
  color: var(--paper);
}

.support-section .solutions-section-head p:not(.eyebrow),
.supply-path-section .solutions-section-head p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.76);
  text-shadow: 0 1px 0 rgba(14, 58, 36, 0.58);
}

.buyer-type-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(232, 161, 26, 0.16), transparent 18rem),
    radial-gradient(circle at 88% 60%, rgba(31, 138, 58, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0.7), rgba(251, 246, 234, 0.95));
}

.solution-card-grid,
.buyer-type-grid,
.supply-path {
  display: grid;
  gap: 14px;
}

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

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

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

.solution-card-grid article,
.buyer-type-grid article,
.supply-path article {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 18px;
  border-radius: 10px;
  display: grid;
  align-content: start;
  gap: 10px;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 253, 246, 0.12);
}

.solution-card-grid article,
.supply-path article {
  border: 1px solid rgba(255, 253, 246, 0.16);
  background:
    radial-gradient(circle at 88% 12%, rgba(232, 161, 26, 0.18), transparent 8rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.13), rgba(255, 253, 246, 0.045));
}

.buyer-type-grid article {
  border: 1px solid rgba(37, 35, 30, 0.08);
  background:
    radial-gradient(circle at 92% 16%, rgba(31, 138, 58, 0.14), transparent 8rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.96), rgba(251, 246, 234, 0.68));
  color: var(--leaf);
}

.solution-card-grid h3,
.supply-path h3 {
  color: var(--paper);
  font-size: 1.35rem;
}

.buyer-type-grid h3 {
  color: var(--leaf);
  font-size: 1.28rem;
}

.solution-card-grid p,
.supply-path p {
  margin: 0;
  color: rgba(255, 253, 246, 0.72);
}

.buyer-type-grid p {
  margin: 0;
  color: rgba(37, 35, 30, 0.72);
}

.solution-center-cta {
  display: flex;
  width: max-content;
  margin: 24px auto 0;
}

.supply-note {
  width: min(1060px, 100%);
  margin: 24px auto 0;
  padding: 20px;
  border: 1px solid rgba(255, 253, 246, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.13), rgba(232, 161, 26, 0.12)),
    rgba(255, 253, 246, 0.045);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.supply-note p {
  margin: 0;
  color: rgba(255, 253, 246, 0.78);
  font-weight: 800;
}

.supply-note .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.solutions-final-cta {
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 161, 26, 0.24), transparent 18rem),
    radial-gradient(circle at 82% 64%, rgba(31, 138, 58, 0.3), transparent 20rem),
    linear-gradient(145deg, #0e3a24, #221f19 78%);
  color: var(--paper);
}

.solutions-final-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  align-items: center;
  gap: 14px clamp(28px, 5vw, 72px);
  filter:
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.24))
    drop-shadow(0 1px 0 rgba(14, 58, 36, 0.4));
}

.solutions-final-inner h2 {
  max-width: 900px;
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

.solutions-final-inner > .eyebrow,
.solutions-final-inner > h2,
.solutions-final-inner > p:not(.eyebrow) {
  grid-column: 1;
}

.solutions-final-inner > p:not(.eyebrow) {
  max-width: 620px;
}

.solutions-final-inner .hero-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
  width: 100%;
  display: grid;
  gap: 12px;
}

.solutions-final-inner .button {
  width: 100%;
}

@media (max-width: 1100px) {
  .solution-card-grid,
  .buyer-type-grid,
  .supply-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .solutions-hero-board {
    min-height: 430px;
    order: -1;
  }

  .solutions-hero-board .solution-hero-large {
    inset: 12% 18% auto 0;
    height: 245px;
  }

  .solutions-hero-board figure:nth-child(2) {
    width: 42%;
    height: 170px;
  }

  .solutions-hero-board figure:nth-child(3) {
    width: 40%;
    height: 170px;
  }

  .solutions-hero-board figure:nth-child(4) {
    width: 44%;
    height: 190px;
  }
}

@media (max-width: 640px) {
  .solutions-hero,
  .solutions-section,
  .solutions-final-cta {
    padding-inline: 16px;
  }

  .solutions-hero {
    min-height: calc(100svh - 122px);
    padding-block: 42px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }

  .solutions-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(14, 58, 36, 0.64) 0%, rgba(17, 17, 14, 0.76) 48%, rgba(17, 17, 14, 0.9) 100%),
      radial-gradient(circle at 50% 42%, rgba(232, 161, 26, 0.18), transparent 16rem);
    pointer-events: none;
  }

  .solutions-hero-copy {
    position: relative;
    z-index: 2;
    justify-items: center;
    width: min(100%, 520px);
  }

  .solutions-hero-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
  }

  .solutions-hero-board {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    width: 100%;
    filter: none;
    opacity: 0.92;
    pointer-events: none;
  }

  .solutions-hero-board .solution-hero-large,
  .solutions-hero-board figure,
  .solutions-hero-board figure:nth-child(2),
  .solutions-hero-board figure:nth-child(3),
  .solutions-hero-board figure:nth-child(4) {
    position: absolute;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
    box-shadow: none;
  }

  .solutions-hero-board .solution-hero-large {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .solutions-hero-board figure:nth-child(2) {
    right: -18%;
    top: -6%;
    width: 58%;
    height: 31%;
    opacity: 0.82;
  }

  .solutions-hero-board figure:nth-child(3) {
    left: -18%;
    bottom: -5%;
    width: 55%;
    height: 30%;
    opacity: 0.76;
  }

  .solutions-hero-board figure:nth-child(4) {
    right: -14%;
    bottom: 7%;
    width: 56%;
    height: 30%;
    opacity: 0.76;
  }

  .solutions-section-head h2,
  .solutions-final-inner h2 {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

  .solution-card-grid,
  .buyer-type-grid,
  .supply-path {
    grid-template-columns: 1fr;
  }

  .solution-card-grid article,
  .buyer-type-grid article,
  .supply-path article {
    min-height: 0;
  }

  .supply-note,
  .solutions-final-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .supply-note {
    display: grid;
  }

  .supply-note .button,
  .solution-center-cta {
    width: min(100%, 310px);
    justify-content: center;
    white-space: nowrap;
  }

  .solutions-final-inner > .eyebrow,
  .solutions-final-inner > h2,
  .solutions-final-inner > p:not(.eyebrow),
  .solutions-final-inner .hero-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .solutions-final-inner .hero-actions {
    width: 100%;
  }

  .solutions-final-inner .button,
  .solutions-hero-copy .button {
    width: min(100%, 310px);
    justify-self: center;
    white-space: nowrap;
  }
}

/* Quality & Process page */
.quality-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(232, 161, 26, 0.18), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(31, 138, 58, 0.16), transparent 22rem),
    linear-gradient(180deg, #fff8e6 0%, var(--paper) 32%, #f8ead2 100%);
}

.quality-page .reveal {
  opacity: 1;
  transform: none;
}

.quality-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 86px);
  padding: clamp(84px, 11vh, 124px) max(20px, calc((100vw - 1312px) / 2)) clamp(58px, 8vh, 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(14, 58, 36, 0.68) 0%, rgba(17, 17, 14, 0.78) 52%, rgba(17, 17, 14, 0.92) 100%),
    radial-gradient(circle at 50% 38%, rgba(232, 161, 26, 0.2), transparent 24rem),
    url("/assets/about/location-processing-plant.jpg") center / cover no-repeat,
    linear-gradient(135deg, #0e3a24 0%, #11110e 52%, #302416 100%);
}

.quality-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 246, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 246, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
}

.quality-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 166, 79, 0.24), transparent 22rem),
    radial-gradient(circle at 76% 72%, rgba(217, 119, 6, 0.2), transparent 24rem);
  pointer-events: none;
}

.quality-hero-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(920px, 100%);
  filter:
    drop-shadow(0 30px 48px rgba(0, 0, 0, 0.48))
    drop-shadow(0 2px 0 rgba(14, 58, 36, 0.32));
}

.quality-hero-copy h1,
.quality-section-head h2,
.quality-support-copy h2,
.quality-final-inner h2 {
  color: transparent;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.quality-hero-copy h1,
.quality-final-inner h2 {
  background: linear-gradient(92deg, #fffdf6 0%, #9fdc74 30%, #f0b52a 66%, #ef6b38 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.quality-hero-copy h1 {
  max-width: 790px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.96;
}

.quality-hero-copy p:not(.eyebrow),
.quality-final-inner p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 253, 246, 0.84);
  font-size: clamp(1rem, 1.18vw, 1.13rem);
}

.quality-hero-board {
  display: none;
}

.quality-hero-board figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 246, 0.5);
  border-radius: 10px;
  background: rgba(255, 253, 246, 0.12);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.22),
    0 0 0 10px rgba(255, 253, 246, 0.08);
}

.quality-hero-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
  animation: productImageSlowZoom 21s ease-in-out infinite alternate;
}

.quality-hero-board .quality-hero-large {
  inset: 8% 18% auto 0;
  height: 320px;
  transform: rotate(-1.6deg);
}

.quality-hero-board figure:nth-child(2) {
  right: 0;
  top: 0;
  width: 42%;
  height: 210px;
  transform: rotate(1.4deg);
}

.quality-hero-board figure:nth-child(3) {
  left: 8%;
  bottom: 0;
  width: 38%;
  height: 210px;
  transform: rotate(1.6deg);
}

.quality-hero-board figure:nth-child(4) {
  right: 6%;
  bottom: 7%;
  width: 44%;
  height: 250px;
  transform: rotate(-1deg);
}

.quality-section {
  position: relative;
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
}

.quality-section-head,
.quality-support-copy {
  width: min(980px, 100%);
  margin: 0 auto 26px;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.quality-section-head h2,
.quality-support-copy h2,
.quality-final-inner h2 {
  max-width: 980px;
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

.quality-section-head p:not(.eyebrow),
.quality-support-copy p:not(.eyebrow) {
  max-width: 840px;
  margin: 0;
  color: rgba(37, 35, 30, 0.72);
  font-size: clamp(1rem, 1.14vw, 1.08rem);
  text-shadow: 0 1px 0 rgba(255, 253, 246, 0.82);
}

.source-section,
.buyer-support-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 161, 26, 0.22), transparent 18rem),
    radial-gradient(circle at 82% 68%, rgba(183, 51, 44, 0.18), transparent 18rem),
    linear-gradient(135deg, #25231e, #0e3a24 120%);
  color: var(--paper);
}

.source-section .quality-section-head p:not(.eyebrow),
.buyer-support-section .quality-support-copy p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.76);
  text-shadow: 0 1px 0 rgba(14, 58, 36, 0.58);
}

.consistency-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(232, 161, 26, 0.16), transparent 18rem),
    radial-gradient(circle at 88% 60%, rgba(31, 138, 58, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0.7), rgba(251, 246, 234, 0.95));
}

.quality-process-flow,
.consistency-grid {
  display: grid;
  gap: 14px;
}

.quality-process-flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.quality-process-flow article,
.consistency-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 18px;
  border-radius: 10px;
  display: grid;
  align-content: start;
  gap: 10px;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 253, 246, 0.12);
}

.quality-process-flow article {
  border: 1px solid rgba(255, 253, 246, 0.16);
  background:
    radial-gradient(circle at 88% 12%, rgba(232, 161, 26, 0.18), transparent 8rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.13), rgba(255, 253, 246, 0.045));
}

.consistency-grid article {
  border: 1px solid rgba(37, 35, 30, 0.08);
  background:
    radial-gradient(circle at 92% 16%, rgba(31, 138, 58, 0.14), transparent 8rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.96), rgba(251, 246, 234, 0.68));
  color: var(--leaf);
}

.quality-process-flow h3 {
  color: var(--paper);
  font-size: 1.35rem;
}

.consistency-grid h3 {
  color: var(--leaf);
  font-size: 1.28rem;
}

.quality-process-flow p {
  margin: 0;
  color: rgba(255, 253, 246, 0.72);
}

.consistency-grid p {
  margin: 0;
  color: rgba(37, 35, 30, 0.72);
}

.quality-support-note,
.quality-light-note {
  width: min(980px, 100%);
  margin: 24px auto 0;
  padding: 18px 20px;
  border-radius: 10px;
  font-weight: 800;
  text-align: center;
}

.quality-support-note {
  border: 1px solid rgba(255, 253, 246, 0.16);
  background: rgba(255, 253, 246, 0.08);
  color: rgba(255, 253, 246, 0.78);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
}

.quality-light-note {
  border: 1px solid rgba(37, 35, 30, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.92), rgba(232, 161, 26, 0.14)),
    var(--paper);
  color: rgba(37, 35, 30, 0.72);
  box-shadow: 0 22px 48px rgba(37, 35, 30, 0.1);
}

.support-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1060px, 100%);
  margin: 0 auto 26px;
}

.support-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 253, 246, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.1), rgba(232, 161, 26, 0.1)),
    rgba(255, 253, 246, 0.05);
  color: rgba(255, 253, 246, 0.82);
  font-weight: 850;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 253, 246, 0.12);
}

.accreditation-band {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255, 253, 246, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 20%, rgba(232, 161, 26, 0.16), transparent 14rem),
    linear-gradient(135deg, rgba(255, 253, 246, 0.13), rgba(255, 253, 246, 0.045));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
}

.accreditation-band h3 {
  max-width: 720px;
  color: var(--paper);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.accreditation-band p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(255, 253, 246, 0.72);
}

.accreditation-band .hero-actions {
  display: grid;
  gap: 12px;
}

.accreditation-band .button {
  width: 100%;
}

.quality-final-cta {
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(232, 161, 26, 0.24), transparent 18rem),
    radial-gradient(circle at 82% 64%, rgba(31, 138, 58, 0.3), transparent 20rem),
    linear-gradient(145deg, #0e3a24, #221f19 78%);
  color: var(--paper);
}

.quality-final-inner {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  align-items: center;
  gap: 14px clamp(28px, 5vw, 72px);
  filter:
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.24))
    drop-shadow(0 1px 0 rgba(14, 58, 36, 0.4));
}

.quality-final-inner > .eyebrow,
.quality-final-inner > h2,
.quality-final-inner > p:not(.eyebrow) {
  grid-column: 1;
}

.quality-final-inner > p:not(.eyebrow) {
  max-width: 680px;
}

.quality-final-inner .hero-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-self: end;
  width: 100%;
  display: grid;
  gap: 12px;
}

.quality-final-inner .button {
  width: 100%;
}

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

  .quality-hero-board {
    min-height: 430px;
    order: -1;
  }

  .quality-hero-board .quality-hero-large {
    inset: 12% 18% auto 0;
    height: 245px;
  }

  .quality-hero-board figure:nth-child(2) {
    width: 42%;
    height: 170px;
  }

  .quality-hero-board figure:nth-child(3) {
    width: 40%;
    height: 170px;
  }

  .quality-hero-board figure:nth-child(4) {
    width: 44%;
    height: 190px;
  }

  .quality-process-flow,
  .consistency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quality-hero,
  .quality-section,
  .quality-final-cta {
    padding-inline: 16px;
  }

  .quality-hero {
    min-height: calc(100svh - 122px);
    padding-block: 42px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }

  .quality-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(14, 58, 36, 0.64) 0%, rgba(17, 17, 14, 0.76) 48%, rgba(17, 17, 14, 0.9) 100%),
      radial-gradient(circle at 50% 42%, rgba(232, 161, 26, 0.18), transparent 16rem);
    pointer-events: none;
  }

  .quality-hero-copy {
    position: relative;
    z-index: 2;
    justify-items: center;
    width: min(100%, 520px);
  }

  .quality-hero-copy h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
  }

  .quality-hero-board {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    width: 100%;
    filter: none;
    opacity: 0.92;
    pointer-events: none;
  }

  .quality-hero-board .quality-hero-large,
  .quality-hero-board figure,
  .quality-hero-board figure:nth-child(2),
  .quality-hero-board figure:nth-child(3),
  .quality-hero-board figure:nth-child(4) {
    position: absolute;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
    box-shadow: none;
  }

  .quality-hero-board .quality-hero-large {
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
  }

  .quality-hero-board figure:nth-child(2) {
    right: -18%;
    top: -6%;
    width: 58%;
    height: 31%;
    opacity: 0.82;
  }

  .quality-hero-board figure:nth-child(3) {
    left: -18%;
    bottom: -5%;
    width: 55%;
    height: 30%;
    opacity: 0.76;
  }

  .quality-hero-board figure:nth-child(4) {
    right: -14%;
    bottom: 7%;
    width: 56%;
    height: 30%;
    opacity: 0.76;
  }

  .quality-section-head h2,
  .quality-support-copy h2,
  .quality-final-inner h2 {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

  .quality-process-flow,
  .consistency-grid,
  .accreditation-band,
  .quality-final-inner {
    grid-template-columns: 1fr;
  }

  .quality-process-flow article,
  .consistency-grid article {
    min-height: 0;
  }

  .accreditation-band,
  .quality-final-inner {
    text-align: center;
    justify-items: center;
  }

  .accreditation-band .hero-actions,
  .quality-final-inner .hero-actions {
    width: 100%;
    grid-column: auto;
    grid-row: auto;
  }

  .quality-final-inner > .eyebrow,
  .quality-final-inner > h2,
  .quality-final-inner > p:not(.eyebrow) {
    grid-column: auto;
  }

  .quality-hero-copy .button,
  .accreditation-band .button,
  .quality-final-inner .button {
    width: min(100%, 310px);
    justify-self: center;
    white-space: nowrap;
  }
}

/* Contact page */
.contact-page .reveal {
  opacity: 1;
  transform: none;
}

.contact-hero {
  min-height: calc(100vh - 84px);
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(31, 138, 58, 0.34), transparent 20rem),
    radial-gradient(circle at 78% 72%, rgba(217, 119, 6, 0.26), transparent 20rem),
    linear-gradient(135deg, #0a2719 0%, #11110e 58%, #2b1a12 100%);
  color: var(--paper);
}

.contact-hero::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 253, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 246, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.contact-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
}

.contact-hero-copy h1,
.contact-section-head h2 {
  margin: 0;
  font: 700 clamp(3.25rem, 7vw, 6.5rem) / 0.9 var(--font-display);
  letter-spacing: 0;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 253, 246, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

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

.contact-hero-board {
  position: relative;
  z-index: 1;
  min-height: 590px;
  filter: drop-shadow(0 36px 50px rgba(0, 0, 0, 0.36));
}

.contact-hero-board figure {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 246, 0.18);
  border-radius: 12px;
  background: rgba(255, 253, 246, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 253, 246, 0.18);
}

.contact-hero-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-large {
  inset: 8% 5% auto 0;
  width: 78%;
  height: 390px;
}

.contact-hero-board figure:nth-child(2) {
  right: 0;
  top: 0;
  width: 38%;
  height: 220px;
}

.contact-hero-board figure:nth-child(3) {
  right: 9%;
  bottom: 6%;
  width: 48%;
  height: 250px;
}

.contact-hero-board figure:nth-child(4) {
  left: 12%;
  bottom: 0;
  width: 38%;
  height: 220px;
}

.contact-section {
  position: relative;
  padding: clamp(68px, 8vw, 104px) max(20px, calc((100vw - 1312px) / 2));
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 161, 26, 0.16), transparent 20rem),
    radial-gradient(circle at 84% 42%, rgba(31, 138, 58, 0.13), transparent 22rem),
    var(--paper);
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section-head {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 38px 0 24px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.contact-section-head h2 {
  font-size: clamp(2.5rem, 5.6vw, 5.25rem);
}

.contact-section-head p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: rgba(17, 17, 14, 0.68);
  font-size: 1.02rem;
}

.contact-option-grid,
.next-steps-grid {
  width: min(1180px, 100%);
  margin: 0 auto 38px;
  display: grid;
  gap: 18px;
}

.contact-option-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-option-grid article,
.next-steps-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 14, 0.1);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 16%, rgba(31, 138, 58, 0.14), transparent 10rem),
    linear-gradient(150deg, rgba(255, 253, 246, 0.96), rgba(251, 246, 234, 0.76));
  box-shadow: 0 28px 70px rgba(17, 17, 14, 0.12), inset 0 1px 0 rgba(255, 253, 246, 0.9);
  display: grid;
  align-content: start;
  gap: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-option-grid article:hover,
.next-steps-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 86px rgba(17, 17, 14, 0.16), inset 0 1px 0 rgba(255, 253, 246, 0.9);
}

.contact-option-grid h3,
.next-steps-grid h3,
.submission-panel h3 {
  margin: 0;
  color: var(--leaf);
  font: 700 1.55rem / 1 var(--font-display);
}

.contact-option-grid p,
.next-steps-grid p,
.submission-panel p,
.privacy-note {
  margin: 0;
  color: rgba(17, 17, 14, 0.66);
}

.contact-option-grid strong {
  color: var(--leaf);
  font-weight: 800;
}

.contact-option-grid .button {
  width: 100%;
  margin-top: auto;
}

.enquiry-section {
  background:
    radial-gradient(circle at 22% 12%, rgba(232, 161, 26, 0.18), transparent 18rem),
    radial-gradient(circle at 82% 82%, rgba(183, 51, 44, 0.12), transparent 18rem),
    linear-gradient(180deg, var(--paper), #fbf2e1);
}

.contact-form {
  width: min(1180px, 100%);
  margin: 0 auto 42px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 14, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(31, 138, 58, 0.11), transparent 18rem),
    radial-gradient(circle at 94% 100%, rgba(217, 119, 6, 0.13), transparent 18rem),
    rgba(255, 253, 246, 0.88);
  box-shadow: 0 36px 92px rgba(17, 17, 14, 0.16), inset 0 1px 0 rgba(255, 253, 246, 0.95);
}

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

.packaging-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.packaging-fields[hidden] {
  display: none;
}

.contact-form label {
  position: relative;
  display: grid;
  gap: 8px;
  color: var(--leaf);
  font-weight: 800;
  font-size: 0.88rem;
}

.contact-form .packaging-check {
  grid-column: 1 / -1;
}

.contact-form .packaging-check label {
  width: fit-content;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid rgba(14, 58, 36, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background:
    radial-gradient(circle at 8% 0%, rgba(232, 161, 26, 0.2), transparent 9rem),
    linear-gradient(135deg, rgba(255, 253, 246, 0.98), rgba(232, 241, 222, 0.8));
  box-shadow:
    0 16px 32px rgba(17, 17, 14, 0.1),
    inset 0 1px 0 rgba(255, 253, 246, 0.96);
  cursor: pointer;
}

.packaging-check span {
  color: var(--leaf);
  font-weight: 800;
  line-height: 1.25;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 17, 14, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.92);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-form .packaging-check input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-height: 22px;
  padding: 0;
  border: 2px solid rgba(31, 138, 58, 0.56);
  border-radius: 6px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 253, 246, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.contact-form .packaging-check input::before {
  content: "";
  width: 11px;
  height: 7px;
  border-left: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
  opacity: 0;
  transform: translateY(-1px) rotate(-45deg) scale(0.82);
  transition: opacity 140ms ease, transform 140ms ease;
}

.contact-form .packaging-check input:checked {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), var(--saffron));
}

.contact-form .packaging-check input:checked::before {
  opacity: 1;
  transform: translateY(-1px) rotate(-45deg) scale(1);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, 0.96), rgba(251, 246, 234, 0.84)),
    rgba(255, 253, 246, 0.92);
  color: var(--leaf);
  font-family: var(--font-body);
  font-weight: 750;
}

.contact-form select option {
  background: #fffdf6;
  color: var(--leaf);
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-form select option:checked {
  background: linear-gradient(135deg, var(--leaf), var(--green));
  color: var(--paper);
}

.native-select-enhanced {
  position: absolute;
  width: 1px !important;
  min-height: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.custom-select {
  position: relative;
  z-index: 1;
}

.custom-select.is-open {
  z-index: 80;
}

.custom-select-button {
  width: 100%;
  min-height: 48px;
  padding: 0 44px 0 14px;
  border: 1px solid rgba(14, 58, 36, 0.16);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background:
    radial-gradient(circle at 14% 0%, rgba(232, 161, 26, 0.16), transparent 8rem),
    radial-gradient(circle at 96% 100%, rgba(31, 138, 58, 0.12), transparent 9rem),
    linear-gradient(135deg, rgba(255, 253, 246, 0.98), rgba(251, 246, 234, 0.88));
  color: var(--leaf);
  font: 800 0.95rem / 1.2 var(--font-body);
  text-align: left;
  cursor: pointer;
  box-shadow:
    0 13px 28px rgba(17, 17, 14, 0.08),
    inset 0 1px 0 rgba(255, 253, 246, 0.96);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.custom-select-button::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 160ms ease;
}

.custom-select-button:hover,
.custom-select-button:focus-visible,
.custom-select.is-open .custom-select-button {
  border-color: rgba(31, 138, 58, 0.46);
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 161, 26, 0.2), transparent 8rem),
    radial-gradient(circle at 96% 100%, rgba(31, 138, 58, 0.18), transparent 9rem),
    linear-gradient(135deg, rgba(255, 253, 246, 1), rgba(246, 239, 220, 0.96));
  box-shadow:
    0 18px 38px rgba(14, 58, 36, 0.14),
    0 0 0 4px rgba(31, 138, 58, 0.1),
    inset 0 1px 0 rgba(255, 253, 246, 0.98);
  transform: translateY(-1px);
}

.custom-select.is-open .custom-select-button::after {
  transform: translateY(2px) rotate(225deg);
}

.custom-select-button.is-placeholder {
  color: rgba(37, 35, 30, 0.58);
  font-weight: 720;
}

.custom-select-button[aria-invalid="true"] {
  border-color: rgba(183, 51, 44, 0.68);
  box-shadow:
    0 0 0 4px rgba(183, 51, 44, 0.1),
    inset 0 1px 0 rgba(255, 253, 246, 0.96);
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 274px;
  padding: 8px;
  border: 1px solid rgba(255, 253, 246, 0.72);
  border-radius: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(232, 161, 26, 0.18), transparent 10rem),
    radial-gradient(circle at 100% 28%, rgba(31, 138, 58, 0.18), transparent 10rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.99), rgba(251, 246, 234, 0.96));
  box-shadow:
    0 28px 68px rgba(17, 17, 14, 0.2),
    inset 0 1px 0 rgba(255, 253, 246, 0.95);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top;
  transition: opacity 130ms ease, visibility 130ms ease, transform 130ms ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-select-menu::-webkit-scrollbar {
  width: 8px;
}

.custom-select-menu::-webkit-scrollbar-track {
  background: rgba(14, 58, 36, 0.08);
  border-radius: 999px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--saffron));
}

.custom-select-option {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  background: rgba(255, 253, 246, 0.46);
  color: var(--leaf);
  font: 780 0.9rem / 1.25 var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: color 130ms ease, background 130ms ease, transform 130ms ease, box-shadow 130ms ease;
}

.custom-select-option + .custom-select-option {
  margin-top: 4px;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  color: var(--paper);
  background: linear-gradient(135deg, var(--leaf), var(--green) 62%, #6a9f3f);
  box-shadow: 0 10px 22px rgba(14, 58, 36, 0.16);
  transform: translateX(2px);
}

.custom-select-option.is-selected {
  color: var(--paper);
  background:
    linear-gradient(135deg, var(--green), var(--saffron) 66%, var(--turmeric));
  box-shadow:
    0 12px 24px rgba(217, 119, 6, 0.18),
    inset 0 1px 0 rgba(255, 253, 246, 0.28);
}

.custom-select-option.is-placeholder {
  color: rgba(37, 35, 30, 0.58);
  font-weight: 720;
}

.custom-select-option.is-placeholder:hover,
.custom-select-option.is-placeholder:focus-visible {
  color: var(--paper);
}

.contact-form textarea {
  min-height: 132px;
  padding-block: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(31, 138, 58, 0.7);
  box-shadow: 0 0 0 4px rgba(31, 138, 58, 0.12);
}

.wide-field {
  margin-top: 18px;
}

.submission-panel {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 14, 0.1);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 20%, rgba(232, 161, 26, 0.16), transparent 12rem),
    rgba(255, 253, 246, 0.82);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  align-items: center;
  gap: 18px;
  box-shadow: 0 24px 55px rgba(17, 17, 14, 0.1);
}

.submission-actions {
  display: grid;
  gap: 12px;
}

.submission-actions .button {
  width: 100%;
}

.privacy-note {
  margin-top: 14px;
  font-size: 0.9rem;
}

.next-steps-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(232, 161, 26, 0.16), transparent 18rem),
    radial-gradient(circle at 80% 74%, rgba(31, 138, 58, 0.24), transparent 24rem),
    linear-gradient(145deg, #0e3a24, #151813 76%);
  color: var(--paper);
}

.next-steps-section .contact-section-head p:not(.eyebrow),
.next-steps-grid p,
.contact-support-note {
  color: rgba(255, 253, 246, 0.72);
}

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

.next-steps-grid article {
  min-height: 210px;
  border-color: rgba(255, 253, 246, 0.15);
  background:
    radial-gradient(circle at 92% 14%, rgba(232, 161, 26, 0.16), transparent 10rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.12), rgba(255, 253, 246, 0.045));
}

.next-steps-grid h3 {
  color: var(--paper);
}

.contact-support-note {
  width: min(980px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

/* Product category pages */
.category-page .reveal {
  opacity: 1;
  transform: none;
}

.category-hero {
  min-height: calc(100vh - 84px);
  padding: clamp(42px, 5.4vw, 70px) max(20px, calc((100vw - 1312px) / 2)) clamp(38px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(26px, 5vw, 86px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(31, 138, 58, 0.34), transparent 20rem),
    radial-gradient(circle at 86% 74%, rgba(217, 119, 6, 0.28), transparent 22rem),
    linear-gradient(135deg, #0a2719 0%, #11110e 56%, #2b1a12 100%);
  color: var(--paper);
}

.category-hero::before,
.category-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 253, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 246, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.category-hero-copy,
.category-hero-media,
.category-section > * {
  position: relative;
  z-index: 1;
}

.category-hero-copy {
  display: grid;
  gap: 14px;
  filter:
    drop-shadow(0 28px 46px rgba(0, 0, 0, 0.34))
    drop-shadow(0 1px 0 rgba(14, 58, 36, 0.5));
}

.breadcrumb {
  margin: 0;
  color: rgba(255, 253, 246, 0.7);
  font: 700 0.78rem / 1.2 var(--font-ui);
}

.breadcrumb a {
  color: rgba(255, 253, 246, 0.92);
}

.category-hero h1,
.category-section-head h2,
.category-enquiry-inner h2 {
  margin: 0;
  font: 700 clamp(2.55rem, 5.15vw, 4.9rem) / 0.96 var(--font-display);
  letter-spacing: 0;
  background: var(--section-heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.category-hero-copy p:not(.eyebrow):not(.breadcrumb) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 253, 246, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.category-hero-media {
  margin: 0;
  min-height: 430px;
  border: 1px solid rgba(255, 253, 246, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 253, 246, 0.08);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 253, 246, 0.18);
  transform: rotate(1deg);
}

.category-hero-media img,
.category-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-section {
  position: relative;
  padding: clamp(58px, 7vw, 92px) max(20px, calc((100vw - 1312px) / 2));
  background:
    radial-gradient(circle at 14% 12%, rgba(232, 161, 26, 0.16), transparent 20rem),
    radial-gradient(circle at 82% 68%, rgba(31, 138, 58, 0.16), transparent 22rem),
    var(--paper);
}

.category-guidance-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(232, 161, 26, 0.22), transparent 20rem),
    radial-gradient(circle at 84% 78%, rgba(31, 138, 58, 0.22), transparent 22rem),
    linear-gradient(145deg, #0e3a24, #171813 78%);
  color: var(--paper);
}

.category-section-head {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.category-section-head h2,
.category-enquiry-inner h2 {
  font-size: clamp(2.55rem, 5.4vw, 5.25rem);
  line-height: 0.94;
}

.category-section-head p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: rgba(17, 17, 14, 0.68);
}

.category-guidance-section .category-section-head p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.72);
}

.category-tabs {
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.category-tabs button {
  min-height: 44px;
  border: 1px solid rgba(17, 17, 14, 0.12);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 253, 246, 0.78);
  color: var(--leaf);
  font: 850 0.9rem / 1 var(--font-ui);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 17, 14, 0.1);
}

.category-tabs button.is-active {
  border-color: rgba(31, 138, 58, 0.5);
  background: linear-gradient(135deg, var(--green), #4d9b36);
  color: var(--paper);
}

.category-tab-panel {
  display: none;
}

.category-tab-panel.is-active {
  display: grid;
}

.category-product-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.category-product-grid.category-tab-panel {
  display: none;
}

.category-product-grid.category-tab-panel.is-active {
  display: grid;
}

.category-product-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 238px 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 14, 0.1);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 16%, rgba(31, 138, 58, 0.14), transparent 10rem),
    linear-gradient(150deg, rgba(255, 253, 246, 0.97), rgba(251, 246, 234, 0.74));
  box-shadow:
    0 30px 76px rgba(17, 17, 14, 0.14),
    inset 0 1px 0 rgba(255, 253, 246, 0.92);
}

.category-product-card figure {
  position: relative;
  margin: 0;
  min-height: 238px;
  overflow: hidden;
}

.category-product-carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: categoryProductCarousel 8s ease-in-out infinite;
}

.category-product-carousel img:nth-child(2) {
  animation-delay: 4s;
}

.category-product-carousel .carousel-indicator {
  position: absolute;
  right: 12px;
  top: 50%;
  z-index: 3;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
}

.category-product-carousel .carousel-indicator span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 246, 0.7);
  background: rgba(255, 253, 246, 0.58);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
  animation: categoryProductDot 8s ease-in-out infinite;
}

.category-product-carousel .carousel-indicator span:nth-child(2) {
  animation-delay: 4s;
}

.category-product-card > div {
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.category-product-card h3,
.guidance-grid h3 {
  margin: 0;
  color: var(--leaf);
  font: 700 1.55rem / 1.05 var(--font-display);
}

.category-product-card p,
.guidance-grid p,
.category-enquiry-inner p {
  margin: 0;
  color: rgba(17, 17, 14, 0.68);
}

.category-card-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-card-info span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(31, 138, 58, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(31, 138, 58, 0.12), rgba(232, 161, 26, 0.12)),
    rgba(255, 253, 246, 0.72);
  color: var(--leaf);
  font: 800 0.78rem / 1.1 var(--font-ui);
}

.guidance-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.guidance-grid article {
  min-height: 220px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(255, 253, 246, 0.15);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 14%, rgba(232, 161, 26, 0.2), transparent 10rem),
    linear-gradient(145deg, rgba(255, 253, 246, 0.12), rgba(255, 253, 246, 0.045));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

.guidance-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--saffron));
  color: var(--paper);
  font: 850 0.78rem / 1 var(--font-ui);
}

.guidance-grid h3 {
  color: var(--paper);
}

.guidance-grid p {
  color: rgba(255, 253, 246, 0.72);
}

.category-enquiry-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(232, 161, 26, 0.18), transparent 20rem),
    radial-gradient(circle at 82% 70%, rgba(31, 138, 58, 0.18), transparent 22rem),
    linear-gradient(180deg, var(--paper), #fbf1df);
}

.category-enquiry-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(17, 17, 14, 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 138, 58, 0.13), transparent 14rem),
    rgba(255, 253, 246, 0.9);
  box-shadow: 0 34px 88px rgba(17, 17, 14, 0.15);
}

.category-enquiry-inner > div:first-child {
  display: grid;
  gap: 12px;
}

.category-enquiry-inner .hero-actions {
  display: grid;
  gap: 12px;
}

.category-enquiry-inner .button {
  width: 100%;
}

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

  .contact-hero-board {
    min-height: 430px;
    order: -1;
  }

  .contact-hero-large {
    inset: 12% 18% auto 0;
    height: 245px;
  }

  .contact-hero-board figure:nth-child(2),
  .contact-hero-board figure:nth-child(3),
  .contact-hero-board figure:nth-child(4) {
    width: 42%;
    height: 180px;
  }

  .contact-option-grid,
  .form-grid,
  .packaging-fields,
  .next-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-hero {
    grid-template-columns: 1fr;
  }

  .category-hero-media {
    min-height: 420px;
    order: -1;
  }

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

  .category-enquiry-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-hero,
  .contact-section {
    padding-inline: 16px;
  }

  .contact-hero {
    min-height: calc(100svh - 122px);
    padding-block: 42px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }

  .contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(14, 58, 36, 0.66) 0%, rgba(17, 17, 14, 0.78) 48%, rgba(17, 17, 14, 0.92) 100%),
      radial-gradient(circle at 50% 42%, rgba(232, 161, 26, 0.2), transparent 16rem);
    pointer-events: none;
  }

  .contact-hero-copy {
    z-index: 2;
    justify-items: center;
    width: min(100%, 520px);
  }

  .contact-hero-copy h1,
  .contact-section-head h2 {
    font-size: clamp(2.25rem, 10.2vw, 3.4rem);
  }

  .contact-hero-board {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    width: 100%;
    filter: none;
    opacity: 0.94;
    pointer-events: none;
  }

  .contact-hero-board .contact-hero-large,
  .contact-hero-board figure,
  .contact-hero-board figure:nth-child(2),
  .contact-hero-board figure:nth-child(3),
  .contact-hero-board figure:nth-child(4) {
    position: absolute;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
    box-shadow: none;
  }

  .contact-hero-board .contact-hero-large {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .contact-hero-board figure:nth-child(2) {
    right: -18%;
    top: -5%;
    width: 58%;
    height: 30%;
    opacity: 0.82;
  }

  .contact-hero-board figure:nth-child(3) {
    left: -18%;
    bottom: -4%;
    width: 58%;
    height: 30%;
    opacity: 0.78;
  }

  .contact-hero-board figure:nth-child(4) {
    right: -16%;
    bottom: 8%;
    width: 56%;
    height: 28%;
    opacity: 0.78;
  }

  .contact-hero .hero-actions,
  .contact-option-grid,
  .form-grid,
  .packaging-fields,
  .submission-panel,
  .next-steps-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero .hero-actions {
    display: grid;
    width: 100%;
    justify-items: center;
  }

  .contact-hero .button,
  .contact-option-grid .button,
  .submission-actions .button {
    width: min(100%, 330px);
    white-space: nowrap;
  }

  .contact-section-head {
    padding-top: 28px;
  }

  .contact-option-grid article,
  .next-steps-grid article {
    min-height: 0;
  }

  .contact-form {
    padding: 16px;
  }

  .submission-panel {
    text-align: center;
  }

  .category-hero,
  .category-section {
    padding-inline: 16px;
  }

  .category-hero {
    min-height: calc(100svh - 122px);
    padding-block: 42px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }

  .category-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(14, 58, 36, 0.68) 0%, rgba(17, 17, 14, 0.78) 48%, rgba(17, 17, 14, 0.92) 100%),
      radial-gradient(circle at 50% 42%, rgba(232, 161, 26, 0.2), transparent 16rem);
    pointer-events: none;
  }

  .category-hero-copy {
    z-index: 2;
    justify-items: center;
    width: min(100%, 520px);
  }

  .category-hero h1,
  .category-section-head h2,
  .category-enquiry-inner h2 {
    font-size: clamp(2.15rem, 10.4vw, 3.35rem);
  }

  .category-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
    width: 100%;
    border: 0;
    border-radius: 0;
    transform: none;
    opacity: 0.94;
    box-shadow: none;
  }

  .category-product-grid,
  .guidance-grid,
  .category-enquiry-inner {
    grid-template-columns: 1fr;
  }

  .category-product-card {
    grid-template-rows: 210px 1fr;
  }

  .category-product-card figure {
    min-height: 210px;
  }

  .category-card-info {
    justify-content: center;
  }

  .category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tabs button {
    flex: 0 0 auto;
  }

  .guidance-grid article {
    min-height: 0;
  }

  .category-enquiry-inner {
    text-align: center;
    justify-items: center;
  }

  .category-enquiry-inner .hero-actions,
  .category-enquiry-inner .button,
  .category-product-card .button {
    width: min(100%, 330px);
    justify-self: center;
    white-space: nowrap;
  }
}

/* Final global section rhythm override. Keep this at the end of the file. */
.site main > section {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.site main > section + section {
  border-top: 1px solid transparent !important;
  border-image: linear-gradient(
      90deg,
      rgba(14, 58, 36, 0),
      rgba(31, 138, 58, 0.62) 22%,
      rgba(232, 161, 26, 0.74) 50%,
      rgba(183, 51, 44, 0.6) 78%,
      rgba(14, 58, 36, 0)
    )
    1 !important;
}

/* Final shared hero/footer refinements. Keep after the global rhythm override. */
.site .about-hero,
.site .contact-hero,
.site .solutions-hero,
.site .quality-hero {
  min-height: auto !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.site .about-hero-copy,
.site .contact-hero-copy {
  gap: 12px !important;
}

.site .about-hero-copy h1 {
  max-width: 680px !important;
  font-size: clamp(2.2rem, 4.25vw, 4.45rem) !important;
  line-height: 1 !important;
}

.site .about-hero-copy p:not(.eyebrow) {
  max-width: 610px !important;
  font-size: clamp(0.96rem, 1.08vw, 1.06rem) !important;
}

.site .contact-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr) !important;
  gap: clamp(22px, 4vw, 58px) !important;
}

.site .contact-hero-copy h1 {
  font-size: clamp(2.7rem, 5.8vw, 5.4rem) !important;
  line-height: 0.94 !important;
}

.site .contact-hero-board,
.site .solutions-hero-board {
  min-height: clamp(300px, 34vw, 420px) !important;
}

.solution-card-grid article::before {
  display: none;
}

.footer-brand img {
  width: min(300px, 100%);
  max-height: 96px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.94);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

@media (max-width: 640px) {
  .site.products-page .products-hero {
    min-height: auto !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .site.products-page .products-hero .hero-actions {
    margin-bottom: 0 !important;
  }

  .site .about-hero,
  .site .contact-hero,
  .site .solutions-hero,
  .site .quality-hero {
    min-height: auto !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .site .contact-hero-board,
  .site .solutions-hero-board {
    min-height: 300px !important;
  }

  .footer-brand img {
    width: min(270px, 100%);
    max-height: 88px;
  }
}
