:root {
  --charcoal: #201a16;
  --roasted: #4a2f24;
  --copper: #b98252;
  --parchment: #f5f0e8;
  --milk: #fff9f1;
  --sage: #66745b;
  --line: rgba(32, 26, 22, 0.14);
  --muted: rgba(32, 26, 22, 0.66);
  --shadow: 0 26px 80px rgba(74, 47, 36, 0.18);
  color: var(--charcoal);
  background: var(--milk);
  font-family: "Satoshi", "Geist", "Aptos", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(185, 130, 82, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--milk), var(--parchment) 48%, var(--milk));
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(185, 130, 82, 0.72);
  outline-offset: 4px;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 3;
  background-image:
    linear-gradient(rgba(32, 26, 22, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 26, 22, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 36px, 1380px);
  margin: 18px auto 0;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 249, 241, 0.44);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.76);
  box-shadow: 0 16px 42px rgba(74, 47, 36, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 174px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(32, 26, 22, 0.72);
  font-size: 0.86rem;
}

.site-nav a,
.site-footer a {
  transition: color 220ms ease, transform 220ms ease;
}

.nav-group {
  position: relative;
  padding: 14px 0;
}

.nav-group::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 230px;
  height: 8px;
  content: "";
  transform: translateX(-50%);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 2;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(32, 26, 22, 0.1);
  border-radius: 20px;
  background: rgba(255, 249, 241, 0.92);
  box-shadow: 0 18px 48px rgba(74, 47, 36, 0.14);
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown a {
  padding: 12px 14px;
  border-radius: 13px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: rgba(185, 130, 82, 0.1);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--copper);
}

.site-nav a.is-current {
  color: var(--charcoal);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.78);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(32, 26, 22, 0.58);
  cursor: pointer;
  font-size: 0.72rem;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.language-switch a.is-active {
  background: var(--charcoal);
  color: var(--milk);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.88rem;
  line-height: 1;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 220ms ease, color 220ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--charcoal);
  color: var(--milk);
}

.button {
  padding: 0 22px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.button:active,
.header-cta:active,
.language-switch a:active {
  transform: translateY(1px) scale(0.98);
}

.button.primary {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--milk);
}

.button.secondary {
  background: rgba(255, 249, 241, 0.58);
  color: var(--charcoal);
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  align-items: center;
  gap: 46px;
  width: min(100% - 40px, 1380px);
  min-width: 0;
  min-height: calc(100dvh - 88px);
  margin: 0 auto;
  padding: 78px 0 52px;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 620px;
}

.overline {
  margin: 0 0 26px;
  color: var(--copper);
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 28px;
  color: var(--charcoal);
  font-size: clamp(3.2rem, 7.2vw, 7.2rem);
  font-weight: 700;
  line-height: 0.92;
  max-width: 100%;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.6vw, 5rem);
  font-weight: 650;
  line-height: 0.98;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 650;
  line-height: 1.08;
}

.hero-lede,
.section-heading p,
.capability-copy > p,
.inquiry-copy p {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 38px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.trust-strip span {
  min-height: 66px;
  padding: 18px 16px;
  background: rgba(255, 249, 241, 0.58);
  color: rgba(32, 26, 22, 0.74);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--parchment);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-band {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  padding: 46px 0 86px;
  text-align: center;
}

.intro-band p {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.section {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  padding: 92px 0;
}

.section-kicker {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 34px;
  color: rgba(32, 26, 22, 0.62);
}

.section-kicker span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--copper);
  font-size: 0.8rem;
}

.section-kicker p {
  margin-bottom: 0;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading.compact {
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.44fr);
}

.section-heading p {
  margin-bottom: 0;
}

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

.sector-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: clamp(28px, 3.2vw, 44px);
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--roasted);
  overflow: hidden;
  isolation: isolate;
  transition: border 180ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.sector-card-link {
  cursor: pointer;
}

.sector-card-link:hover,
.sector-card-link:focus-visible {
  border-color: rgba(255, 249, 241, 0.42);
  box-shadow: 0 22px 58px rgba(74, 47, 36, 0.18);
  transform: translateY(-3px);
}

.sector-card-link:hover .sector-bg,
.sector-card-link:focus-visible .sector-bg {
  filter: saturate(1) contrast(1);
  transform: scale(1.04);
}

.sector-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(32, 26, 22, 0.1) 0%, rgba(32, 26, 22, 0.18) 42%, rgba(32, 26, 22, 0.84) 100%),
    linear-gradient(90deg, rgba(32, 26, 22, 0.5), transparent 56%);
  pointer-events: none;
}

.sector-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
  transform: scale(1.01);
  transition: filter 220ms ease, transform 320ms ease;
}

#coffee-extracts .sector-bg {
  object-position: 72% center;
  transform: translateY(-8%) scale(1.1);
}

#coffee-extracts:is(:hover, :focus-visible) .sector-bg {
  filter: saturate(1) contrast(1);
  transform: translateY(-8%) scale(1.14);
}

.sector-index {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  place-items: center;
  border: 1px solid rgba(255, 249, 241, 0.72);
  border-radius: 50%;
  background: rgba(32, 26, 22, 0.2);
  color: var(--milk);
  font-size: 0.86rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.sector-content {
  position: relative;
  z-index: 2;
  margin-top: 120px;
}

.sector-card p,
.sector-card li {
  color: rgba(255, 249, 241, 0.78);
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.sector-card h3 {
  margin: 0 0 16px;
  color: var(--milk);
  overflow-wrap: anywhere;
}

.sector-card .sector-tags {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 249, 241, 0.24);
  color: var(--milk);
  font-weight: 700;
}

.capability {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.72fr);
  gap: 74px;
  align-items: center;
}

.capability-visual {
  min-width: 0;
}

.production-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 249, 241, 0.38), transparent 13rem),
    linear-gradient(135deg, rgba(216, 196, 169, 0.92), rgba(74, 47, 36, 0.92));
  box-shadow: var(--shadow);
}

.production-video::before,
.production-video::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.production-video::before {
  width: 240px;
  height: 240px;
  right: -68px;
  top: -72px;
  background: rgba(255, 249, 241, 0.18);
}

.production-video::after {
  inset: auto 0 0;
  height: 45%;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, rgba(32, 26, 22, 0.34));
}

.production-video video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  object-fit: contain;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--milk);
  text-align: center;
  pointer-events: none;
}

.production-video.has-video .video-placeholder {
  opacity: 0;
}

.play-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 249, 241, 0.48);
  border-radius: 50%;
  background: rgba(32, 26, 22, 0.28);
  backdrop-filter: blur(10px);
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--milk);
}

.video-placeholder p {
  margin: 0;
  color: var(--milk);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
}

.capability-cta {
  width: fit-content;
  margin-top: 28px;
}

.processing-page {
  padding-bottom: 24px;
}

.processing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(520px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  padding: 76px 0 50px;
}

.processing-hero-copy {
  min-width: 0;
}

.processing-hero-copy h1 {
  font-size: clamp(2.85rem, 5.2vw, 5.45rem);
  line-height: 0.96;
}

.processing-hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(74, 47, 36, 0.16);
  border-radius: 30px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.processing-hero-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--charcoal);
}

.processing-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.processing-proof span {
  min-height: 86px;
  padding: 22px;
  background: rgba(255, 249, 241, 0.7);
  color: rgba(32, 26, 22, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.workflow-section > .section-heading p,
.commercial-workflow > .section-heading p,
.export-copy p,
.people-copy p,
.processing-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.workflow-section {
  border-top: 1px solid var(--line);
}

.commercial-workflow,
.export-handoff,
.people-process {
  border-top: 1px solid var(--line);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.workflow-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.08);
}

.workflow-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.workflow-card div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.workflow-index {
  margin: 0;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
}

.workflow-card h3 {
  margin: 0;
  font-size: 1.24rem;
}

.workflow-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.commercial-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.08);
}

.commercial-flow article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: clamp(22px, 2.7vw, 34px);
}

.commercial-flow article + article {
  border-left: 1px solid rgba(74, 47, 36, 0.14);
}

.commercial-flow article + article::before {
  content: "";
  position: absolute;
  top: 36px;
  left: -7px;
  width: 13px;
  height: 13px;
  border-top: 1px solid rgba(74, 47, 36, 0.32);
  border-right: 1px solid rgba(74, 47, 36, 0.32);
  background: var(--milk);
  transform: rotate(45deg);
}

.commercial-flow span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(185, 130, 82, 0.32);
  border-radius: 50%;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 750;
}

.commercial-flow h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.24rem;
}

.commercial-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.export-handoff {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 0.9fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.export-note-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.export-note-list li {
  position: relative;
  padding: 17px 18px 17px 46px;
  border: 1px solid rgba(74, 47, 36, 0.14);
  border-radius: 18px;
  background: rgba(255, 249, 241, 0.66);
  color: rgba(32, 26, 22, 0.78);
  font-size: 0.94rem;
  line-height: 1.48;
}

.export-note-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--copper);
}

.handoff-band {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 30px;
  background: var(--roasted);
  box-shadow: var(--shadow);
}

.handoff-band img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 640px;
  object-fit: cover;
}

.handoff-band figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(420px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 249, 241, 0.22);
  border-radius: 18px;
  background: rgba(32, 26, 22, 0.74);
  color: var(--milk);
  font-size: 0.95rem;
  line-height: 1.5;
  backdrop-filter: blur(12px);
}

.people-process {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(500px, 0.9fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}

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

.people-gallery figure {
  margin: 0;
}

.people-gallery img {
  width: 100%;
  aspect-ratio: 1280 / 854;
  object-fit: cover;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.1);
}

.people-gallery figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.processing-certifications {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100% - 40px, 1380px);
  margin: -28px auto 72px;
  overflow: hidden;
  border: 1px solid rgba(32, 26, 22, 0.16);
  border-radius: 26px;
  background: rgba(255, 249, 241, 0.42);
}

.processing-certifications span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 20px 18px;
  color: rgba(32, 26, 22, 0.72);
  font-size: 0.94rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-align: center;
}

.processing-certifications span + span {
  border-left: 1px solid rgba(32, 26, 22, 0.12);
}

.processing-cta {
  margin-bottom: 88px;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--charcoal);
  color: var(--milk);
  box-shadow: var(--shadow);
}

.processing-cta h2 {
  max-width: 960px;
  color: var(--milk);
}

.processing-cta p:not(.overline) {
  max-width: 760px;
  margin: 24px 0 30px;
  color: rgba(255, 249, 241, 0.74);
}

.processing-cta .button.primary {
  border-color: var(--milk);
  background: var(--milk);
  color: var(--charcoal);
}

.sourcing-page {
  padding-bottom: 24px;
}

.contact-page {
  padding-bottom: 24px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.58fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
  width: min(100% - 40px, 1380px);
  min-height: calc(82dvh - 88px);
  margin: 0 auto;
  padding: 76px 0 52px;
}

.contact-hero-copy {
  min-width: 0;
  max-width: 760px;
}

.contact-hero-copy h1 {
  font-size: clamp(2.9rem, 5.7vw, 6rem);
  line-height: 0.94;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details article {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.08);
}

.contact-details span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.contact-details a {
  transition: color 180ms ease;
}

.contact-details a:hover {
  color: var(--copper);
}

.contact-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.78fr);
  gap: 62px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.products-page {
  padding-bottom: 24px;
}

.products-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 0.88fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  width: min(100% - 40px, 1380px);
  min-height: calc(100dvh - 88px);
  margin: 0 auto;
  padding: 74px 0 52px;
}

.products-hero-copy {
  min-width: 0;
}

.products-hero-copy h1 {
  font-size: clamp(2.95rem, 5.9vw, 6.35rem);
  line-height: 0.94;
  white-space: pre-line;
}

.products-proof {
  max-width: 720px;
}

.products-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 32px;
  background: var(--parchment);
  box-shadow: var(--shadow);
}

.products-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(74, 47, 36, 0.16);
}

.product-hero-collage img {
  min-width: 0;
  background: var(--milk);
}

.product-hero-collage img.fit-contain {
  object-fit: contain;
  padding: clamp(18px, 3vw, 42px);
}

.product-lines,
.product-applications,
.product-path {
  border-top: 1px solid var(--line);
  scroll-margin-top: 120px;
}

.product-lines h2,
.product-applications h2 {
  white-space: pre-line;
}

.product-lines > .section-heading p,
.product-applications > .section-heading p,
.product-path > .section-heading p,
.products-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.product-line-stack {
  display: grid;
  gap: 22px;
}

.product-line-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.56fr) minmax(0, 0.7fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(74, 47, 36, 0.16);
  border-radius: 30px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.08);
  scroll-margin-top: 120px;
}

.product-line-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, 1fr);
  gap: 1px;
  min-width: 0;
  background: rgba(74, 47, 36, 0.14);
}

.product-line-media-grid.is-single {
  grid-template-columns: 1fr;
}

.product-line-media-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--milk);
}

.product-line-media-grid figure.featured {
  grid-row: span 2;
}

.product-line-media-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.product-line-media-grid figure.fit-contain img {
  object-fit: contain;
  padding: clamp(18px, 3vw, 42px);
}

.product-line-media-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 249, 241, 0.2);
  border-radius: 12px;
  background: rgba(32, 26, 22, 0.72);
  color: rgba(255, 249, 241, 0.88);
  font-size: 0.76rem;
  line-height: 1.25;
  backdrop-filter: blur(10px);
}

.product-line-content {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4.5vw, 56px);
}

.product-line-content > span,
.application-grid span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-line-content h3 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(1.75rem, 3.2vw, 3.2rem);
  white-space: pre-line;
}

.product-line-content > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.66;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.text-link::after {
  content: "->";
  font-size: 0.88em;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--charcoal);
  transform: translateX(2px);
}

.product-brief-link {
  margin-top: 28px;
}

.product-line-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid rgba(74, 47, 36, 0.14);
  border-radius: 22px;
  background: rgba(74, 47, 36, 0.14);
}

.product-line-details div {
  min-width: 0;
  padding: 22px;
  background: rgba(255, 249, 241, 0.78);
}

.product-line-details dt {
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.product-line-details dd {
  margin: 0;
  color: rgba(32, 26, 22, 0.76);
  font-size: 0.92rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

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

.application-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.08);
  transition: border 180ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.application-grid article:hover {
  border-color: rgba(185, 130, 82, 0.34);
  box-shadow: 0 20px 54px rgba(74, 47, 36, 0.1);
  transform: translateY(-2px);
}

.application-grid h3 {
  margin: 0;
  font-size: 1.28rem;
}

.application-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.application-link {
  margin-top: auto;
}

.products-cta {
  margin-bottom: 88px;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid rgba(255, 249, 241, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(185, 130, 82, 0.2), transparent 50%),
    var(--charcoal);
  color: var(--milk);
  box-shadow: var(--shadow);
}

.products-cta h2 {
  max-width: 980px;
  color: var(--milk);
}

.products-cta p:not(.overline) {
  max-width: 760px;
  margin: 24px 0 30px;
  color: rgba(255, 249, 241, 0.74);
}

.products-cta .button.primary {
  border-color: var(--milk);
  background: var(--milk);
  color: var(--charcoal);
}

.sourcing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 0.9fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  width: min(100% - 40px, 1380px);
  min-height: calc(100dvh - 88px);
  margin: 0 auto;
  padding: 74px 0 52px;
}

.sourcing-hero-copy {
  min-width: 0;
}

.sourcing-hero-copy h1 {
  font-size: clamp(2.95rem, 5.9vw, 6.35rem);
  line-height: 0.94;
}

.sourcing-proof {
  max-width: 720px;
}

.sourcing-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 32px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.sourcing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sourcing-hero-media figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 249, 241, 0.26);
  border-radius: 18px;
  background: rgba(32, 26, 22, 0.7);
  color: rgba(255, 249, 241, 0.82);
  font-size: 0.86rem;
  line-height: 1.42;
  backdrop-filter: blur(14px);
}

.sourcing-yunnan,
.origin-to-product {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 0.72fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.sourcing-yunnan-copy > p,
.product-origin-copy > p,
.origin-options > .section-heading p,
.market-signals > .section-heading p,
.sourcing-page-cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.sourcing-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.sourcing-list li {
  position: relative;
  padding: 17px 18px 17px 46px;
  border: 1px solid rgba(102, 116, 91, 0.18);
  border-radius: 18px;
  background: rgba(255, 249, 241, 0.62);
  color: rgba(32, 26, 22, 0.78);
  font-size: 0.94rem;
  line-height: 1.48;
}

.sourcing-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}

.sourcing-yunnan-media {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
}

.sourcing-yunnan-media img {
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(74, 47, 36, 0.16);
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.1);
}

.sourcing-yunnan-media img:first-child {
  aspect-ratio: 4 / 5;
}

.sourcing-yunnan-media img:last-child {
  aspect-ratio: 3 / 4;
  transform: translateY(34px);
}

.market-signals {
  border-top: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(260px, 0.62fr);
  gap: 16px;
  align-items: stretch;
}

.signal-card,
.signal-note {
  min-height: 164px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.08);
}

.signal-card {
  display: grid;
  align-content: space-between;
  transition: border 180ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.signal-card:hover {
  border-color: rgba(185, 130, 82, 0.44);
  box-shadow: 0 22px 54px rgba(74, 47, 36, 0.12);
  transform: translateY(-3px);
}

.signal-card span,
.origin-card span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  max-width: 390px;
  color: var(--charcoal);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.06;
}

.signal-note {
  display: grid;
  place-items: center;
  margin: 0;
  background: var(--charcoal);
  color: rgba(255, 249, 241, 0.78);
  font-size: 1rem;
  line-height: 1.52;
}

.origin-options {
  border-top: 1px solid var(--line);
}

.origin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.origin-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: 0 16px 48px rgba(74, 47, 36, 0.08);
}

.origin-card.is-yunnan {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(102, 116, 91, 0.12), transparent),
    rgba(255, 249, 241, 0.76);
}

.origin-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(74, 47, 36, 0.1);
}

.origin-card.is-yunnan img {
  aspect-ratio: 2 / 1;
}

.origin-card div {
  padding: 22px;
}

.origin-card h3 {
  margin: 10px 0 12px;
  font-size: 1.22rem;
}

.origin-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.product-origin-media {
  min-width: 0;
  margin: 0;
}

.product-origin-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.use-case-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.use-case-grid article {
  padding: 22px 24px;
  border: 1px solid rgba(32, 26, 22, 0.12);
  border-radius: 22px;
  background: rgba(255, 249, 241, 0.68);
}

.use-case-grid h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.use-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.sourcing-page-cta {
  margin-bottom: 88px;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid rgba(255, 249, 241, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(102, 116, 91, 0.22), transparent 48%),
    var(--charcoal);
  color: var(--milk);
  box-shadow: var(--shadow);
}

.sourcing-page-cta h2 {
  max-width: 980px;
  color: var(--milk);
}

.sourcing-page-cta p {
  max-width: 760px;
  margin: 24px 0 30px;
  color: rgba(255, 249, 241, 0.74);
}

.sourcing-page-cta .button.primary {
  border-color: var(--milk);
  background: var(--milk);
  color: var(--charcoal);
}

.insights-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 0.84fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  width: min(100% - 40px, 1380px);
  min-height: calc(100dvh - 88px);
  margin: 0 auto;
  padding: 74px 0 52px;
}

.insights-hero-copy {
  min-width: 0;
}

.insights-hero-copy h1 {
  font-size: clamp(2.75rem, 5vw, 5.35rem);
  line-height: 0.96;
}

.insights-proof {
  max-width: 680px;
}

.insights-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 5 / 6;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 32px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.insights-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 48%, rgba(32, 26, 22, 0.46)),
    linear-gradient(90deg, rgba(32, 26, 22, 0.22), transparent 54%);
  pointer-events: none;
}

.insights-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-hero-media figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 249, 241, 0.24);
  border-radius: 999px;
  background: rgba(32, 26, 22, 0.68);
  color: rgba(255, 249, 241, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.insight-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insight-topics button,
.insight-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(74, 47, 36, 0.14);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.68);
  color: rgba(32, 26, 22, 0.72);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, border 180ms ease, color 180ms ease, transform 180ms ease;
}

.insight-chip-row span {
  cursor: default;
}

.insight-topics button:hover,
.insight-topics button.is-active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--milk);
}

.insight-topics button:active {
  transform: translateY(1px) scale(0.98);
}

.featured-insight,
.latest-insights {
  border-top: 1px solid var(--line);
}

.featured-insight-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 0.9fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: end;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(74, 47, 36, 0.16);
  border-radius: 30px;
  background: rgba(255, 249, 241, 0.72);
  box-shadow: 0 18px 54px rgba(74, 47, 36, 0.1);
  cursor: pointer;
  transition: border 180ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.featured-insight-card:hover,
.featured-insight-card:focus-visible {
  border-color: rgba(185, 130, 82, 0.42);
  box-shadow: 0 24px 62px rgba(74, 47, 36, 0.13);
  transform: translateY(-2px);
}

.featured-insight-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

.featured-insight-card > div {
  display: grid;
  gap: 22px;
  padding: clamp(8px, 2vw, 18px) 0;
}

.insight-meta {
  margin: 0;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.4;
  text-transform: uppercase;
}

.insight-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.insight-stream {
  display: grid;
  gap: 16px;
}

.insight-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  min-height: 230px;
  padding: clamp(18px, 2.6vw, 26px);
  border: 1px solid rgba(74, 47, 36, 0.14);
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.66);
  box-shadow: 0 12px 38px rgba(74, 47, 36, 0.07);
  transition: border 180ms ease, transform 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}

.insight-row:hover,
.insight-row:focus-visible {
  border-color: rgba(185, 130, 82, 0.42);
  box-shadow: 0 18px 48px rgba(74, 47, 36, 0.1);
  transform: translateY(-2px);
}

.insight-row[hidden] {
  display: none;
}

.insight-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  background: rgba(74, 47, 36, 0.1);
}

.insight-row-body {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.insight-row h3 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.insight-row p:not(.insight-meta) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.insight-empty {
  display: grid;
  gap: 10px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(74, 47, 36, 0.14);
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.7);
}

.insight-empty[hidden] {
  display: none;
}

.insight-empty h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.insight-empty p {
  margin: 0;
  color: var(--muted);
}

.insight-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.insight-pagination[hidden] {
  display: none;
}

.insight-pagination span {
  color: rgba(32, 26, 22, 0.62);
  font-size: 0.84rem;
  font-weight: 760;
  text-transform: uppercase;
}

.insight-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.insight-read-link,
.article-back {
  width: fit-content;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.insight-read-link:hover,
.article-back:hover {
  color: var(--charcoal);
  transform: translateX(2px);
}

.insights-cta {
  margin-bottom: 88px;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid rgba(255, 249, 241, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(185, 130, 82, 0.18), transparent 50%),
    linear-gradient(20deg, rgba(102, 116, 91, 0.18), transparent 54%),
    var(--charcoal);
  color: var(--milk);
  box-shadow: var(--shadow);
}

.insights-cta h2 {
  max-width: 980px;
  color: var(--milk);
}

.insights-cta p:not(.overline) {
  max-width: 760px;
  margin: 24px 0 30px;
  color: rgba(255, 249, 241, 0.74);
}

.insights-cta .button.primary {
  border-color: var(--milk);
  background: var(--milk);
  color: var(--charcoal);
}

.insight-article-page {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 74px 0 0;
}

.article-shell {
  display: grid;
  gap: 34px;
  padding-bottom: 78px;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 0.72fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: end;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 820px;
  margin: 18px 0 20px;
  font-size: clamp(2.55rem, 5vw, 5.4rem);
  line-height: 0.96;
}

.article-hero p:not(.insight-meta) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.article-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(74, 47, 36, 0.16);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.article-body {
  width: min(100%, 780px);
  margin: 0 auto;
  color: rgba(32, 26, 22, 0.84);
}

.article-body p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.86;
}

.article-body h2 {
  margin: 44px 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.04;
}

.article-note {
  margin-top: 40px;
  padding: 22px 24px;
  border: 1px solid rgba(185, 130, 82, 0.24);
  border-radius: 22px;
  background: rgba(185, 130, 82, 0.08);
  color: rgba(32, 26, 22, 0.72);
  font-size: 0.94rem;
  line-height: 1.62;
}

.article-cta {
  margin-bottom: 88px;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid rgba(255, 249, 241, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(185, 130, 82, 0.18), transparent 50%),
    var(--charcoal);
  color: var(--milk);
  box-shadow: var(--shadow);
}

.article-cta h2 {
  max-width: 900px;
  color: var(--milk);
}

.article-cta p:not(.overline) {
  max-width: 760px;
  margin: 24px 0 30px;
  color: rgba(255, 249, 241, 0.74);
}

.article-cta .button.primary {
  border-color: var(--milk);
  background: var(--milk);
  color: var(--charcoal);
}

.sourcing-ecosystem {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.68fr) minmax(0, 0.86fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: center;
  scroll-margin-top: 104px;
  padding-top: 78px;
  padding-bottom: 92px;
  border-top: 1px solid var(--line);
}

.section-anchor {
  position: absolute;
  top: -104px;
}

.ecosystem-copy h2 {
  max-width: 820px;
  font-size: clamp(2.65rem, 4.25vw, 4.6rem);
}

.ecosystem-text {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin: 28px 0 28px;
}

.ecosystem-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.ecosystem-cta {
  min-width: 164px;
}

.ecosystem-visual {
  min-width: 0;
  margin: 0;
}

.ecosystem-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1003 / 1568;
  min-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.ecosystem-placeholder {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(74, 47, 36, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(32, 26, 22, 0.1), transparent 38%),
    linear-gradient(145deg, rgba(82, 61, 44, 0.92), rgba(185, 130, 82, 0.58) 52%, rgba(245, 240, 232, 0.92));
  box-shadow: var(--shadow);
}

.ecosystem-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(255, 249, 241, 0.2) 62% 63%, transparent 63%),
    linear-gradient(180deg, rgba(32, 26, 22, 0.08), rgba(32, 26, 22, 0.34));
}

.placeholder-grid {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 249, 241, 0.24);
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(255, 249, 241, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 241, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
}

.placeholder-mark {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: min(330px, calc(100% - 60px));
  padding: 22px 24px;
  border: 1px solid rgba(255, 249, 241, 0.24);
  border-radius: 22px;
  background: rgba(32, 26, 22, 0.72);
  color: var(--milk);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.placeholder-mark span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 249, 241, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.placeholder-mark strong {
  display: block;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 0.98;
}

.ecosystem-visual figcaption {
  margin-top: 14px;
  color: var(--copper);
  font-size: 0.82rem;
  line-height: 1.45;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.78fr);
  gap: 62px;
  align-items: start;
  padding-bottom: 118px;
}

.form-logo {
  display: block;
  width: 82px;
  height: 82px;
  margin-bottom: 44px;
}

.form-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inquiry-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 249, 241, 0.74);
  box-shadow: var(--shadow);
}

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

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 9px;
  color: rgba(32, 26, 22, 0.72);
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--charcoal);
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  height: 52px;
  padding: 0 16px;
}

textarea {
  resize: vertical;
  padding: 15px 16px;
  line-height: 1.5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(185, 130, 82, 0.68);
  background: var(--milk);
  box-shadow: 0 0 0 4px rgba(185, 130, 82, 0.14);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-status.is-error {
  color: #8b2f20;
}

.form-status.is-success {
  color: #37542b;
}

.form-status.is-loading {
  color: var(--muted);
}

.form-submit {
  width: fit-content;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 34px max(20px, calc((100vw - 1380px) / 2));
  background: var(--charcoal);
  color: rgba(255, 249, 241, 0.72);
}

.site-footer img {
  width: 156px;
  height: auto;
  aspect-ratio: 640 / 260;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 22px;
  color: rgba(255, 249, 241, 0.68);
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sourcing-page [data-reveal],
.products-page [data-reveal],
.insights-page [data-reveal] {
  opacity: 1;
  transform: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

  .brand img {
    width: 146px;
  }

  .menu-button {
    display: grid;
    place-content: center;
    place-items: center;
    justify-self: end;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 249, 241, 0.82);
  }

  .menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--charcoal);
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 14px;
    padding: 10px 0 4px;
  }

  .site-header.is-open {
    border-radius: 26px;
  }

  .site-header.is-open .site-nav a {
    padding: 12px 4px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .nav-group {
    padding: 0;
  }

  .site-header.is-open .nav-group::after {
    display: none;
  }

  .site-header.is-open .nav-dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 0 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    backdrop-filter: none;
  }

  .site-header.is-open .nav-dropdown a {
    border-top: 1px solid rgba(32, 26, 22, 0.08);
    font-size: 0.82rem;
  }

  .header-actions {
    align-items: stretch;
  }

  .language-switch {
    width: fit-content;
  }

  .hero,
  .section-heading,
  .section-heading.compact,
  .capability,
  .processing-hero,
  .products-hero,
  .sourcing-hero,
  .insights-hero,
  .contact-hero,
  .product-line-card,
  .featured-insight-card,
  .insight-row,
  .article-hero,
  .sourcing-yunnan,
  .origin-to-product,
  .export-handoff,
  .people-process,
  .sourcing-ecosystem,
  .contact-inquiry,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 62px;
    overflow: hidden;
  }

  .hero-media {
    min-height: 520px;
  }

  .intro-band {
    padding-left: 0;
  }

  .sector-layout {
    grid-template-columns: 1fr;
  }

  .processing-hero {
    padding-top: 62px;
  }

  .processing-hero-media {
    order: -1;
  }

  .sourcing-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .products-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .insights-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .insight-article-page {
    padding-top: 62px;
  }

  .contact-hero {
    min-height: auto;
    padding-top: 62px;
  }

  .sourcing-hero-media {
    order: -1;
    aspect-ratio: 16 / 11;
  }

  .products-hero-media {
    aspect-ratio: 16 / 11;
  }

  .insights-hero-media {
    order: -1;
    aspect-ratio: 16 / 11;
  }

  .sourcing-yunnan-media img:last-child {
    transform: none;
  }

  .processing-proof,
  .workflow-grid,
  .commercial-flow,
  .processing-certifications,
  .people-gallery,
  .origin-grid,
  .application-grid,
  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-line-media-grid {
    min-height: 420px;
    grid-auto-rows: minmax(210px, 1fr);
  }

  .product-line-content {
    order: -1;
  }

  .product-line-details {
    grid-template-columns: 1fr;
  }

  .processing-certifications span:nth-child(odd) {
    border-left: 0;
  }

  .processing-certifications span:nth-child(n + 3) {
    border-top: 1px solid rgba(32, 26, 22, 0.12);
  }

  .commercial-flow article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(74, 47, 36, 0.14);
  }

  .commercial-flow article:nth-child(4) {
    border-top: 1px solid rgba(74, 47, 36, 0.14);
  }

  .commercial-flow article:nth-child(3)::before {
    display: none;
  }

  .signal-note {
    grid-column: 1 / -1;
    min-height: 112px;
  }

  .ecosystem-copy {
    order: -1;
  }

  .sector-card {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .processing-hero,
  .products-hero,
  .sourcing-hero,
  .insights-hero,
  .contact-hero,
  .processing-proof,
  .intro-band,
  .section {
    width: min(100% - 28px, 1380px);
  }

  h1 {
    font-size: clamp(2rem, 8.2vw, 2.25rem);
    line-height: 1;
  }

  .hero-copy,
  .hero-lede {
    max-width: min(330px, calc(100vw - 28px));
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hero-media {
    min-height: 420px;
    border-radius: 24px;
  }

  .trust-strip,
  .processing-proof,
  .workflow-grid,
  .commercial-flow,
  .processing-certifications,
  .people-gallery,
  .form-grid,
  .capability-visual,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer img {
    justify-self: start;
    width: 150px;
    max-width: 100%;
    height: auto;
  }

  .section {
    padding: 72px 0;
  }

  .intro-band {
    padding-bottom: 56px;
  }

  .sector-card,
  .inquiry-form {
    border-radius: 24px;
  }

  .production-video {
    border-radius: 24px;
  }

  .processing-hero-media,
  .workflow-card,
  .commercial-flow,
  .processing-certifications,
  .handoff-band,
  .people-gallery img,
  .processing-cta {
    border-radius: 24px;
  }

  .commercial-flow article {
    min-height: auto;
  }

  .commercial-flow article + article,
  .commercial-flow article:nth-child(3),
  .commercial-flow article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(74, 47, 36, 0.14);
  }

  .commercial-flow article + article::before {
    display: none;
  }

  .processing-proof span {
    min-height: auto;
    padding: 18px;
  }

  .processing-certifications {
    width: min(100% - 28px, 1380px);
    margin: -20px auto 52px;
  }

  .processing-certifications span {
    min-height: 64px;
    padding: 16px 12px;
    font-size: 0.82rem;
  }

  .processing-certifications span + span {
    border-left: 0;
    border-top: 1px solid rgba(32, 26, 22, 0.12);
  }

  .processing-hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .products-hero-copy h1 {
    max-width: min(340px, calc(100vw - 28px));
    font-size: clamp(2rem, 9.2vw, 2.45rem);
  }

  .products-hero-copy,
  .products-hero .hero-lede {
    max-width: min(340px, calc(100vw - 28px));
  }

  .products-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: min(260px, calc(100vw - 28px));
  }

  .sourcing-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .insights-hero-copy h1 {
    font-size: clamp(2.2rem, 9.5vw, 2.8rem);
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .sourcing-hero-media,
  .products-hero-media,
  .insights-hero-media,
  .article-hero img,
  .contact-details article,
  .product-origin-media img,
  .sourcing-yunnan-media img,
  .product-line-card,
  .featured-insight-card,
  .insight-row,
  .origin-card,
  .signal-card,
  .signal-note,
  .application-grid article,
  .use-case-grid article,
  .products-cta,
  .sourcing-page-cta {
    border-radius: 24px;
  }

  .sourcing-hero-media figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 16px;
  }

  .sourcing-yunnan-media,
  .origin-grid,
  .application-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .product-line-media-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
    min-height: 0;
  }

  .product-line-media-grid figure.featured {
    grid-row: span 1;
  }

  .product-line-content {
    padding: 26px;
  }

  .product-line-details div {
    padding: 18px;
  }

  .application-grid article {
    min-height: auto;
  }

  .featured-insight-card {
    padding: 18px;
  }

  .featured-insight-card img,
  .insight-row img {
    border-radius: 18px;
  }

  .insight-row {
    min-height: auto;
  }

  .insight-row-body {
    gap: 12px;
  }

  .insight-topics {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .origin-card.is-yunnan {
    grid-column: auto;
  }

  .origin-card.is-yunnan img,
  .origin-card img {
    aspect-ratio: 16 / 10;
  }

  .sourcing-page-cta {
    margin-bottom: 56px;
    padding: 28px;
  }

  .products-cta {
    margin-bottom: 56px;
    padding: 28px;
  }

  .insights-cta {
    margin-bottom: 56px;
    padding: 28px;
    border-radius: 24px;
  }

  .article-shell {
    gap: 24px;
    padding-bottom: 56px;
  }

  .article-hero {
    padding-bottom: 36px;
  }

  .article-hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .article-hero img {
    order: -1;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
  }

  .article-body p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .article-note,
  .article-cta {
    border-radius: 24px;
  }

  .article-cta {
    margin-bottom: 56px;
    padding: 28px;
  }

  .workflow-card div {
    padding: 20px;
  }

  .handoff-band img {
    min-height: 330px;
  }

  .handoff-band figcaption {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    border-radius: 16px;
  }

  .processing-cta {
    margin-bottom: 56px;
    padding: 28px;
  }

  .ecosystem-placeholder {
    min-height: 390px;
    border-radius: 24px;
  }

  .ecosystem-photo {
    min-height: 390px;
    border-radius: 24px;
  }

  .placeholder-grid {
    inset: 18px;
    border-radius: 18px;
  }

  .placeholder-mark {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    border-radius: 18px;
  }
}
