:root {
  --fm-forest: #175a47;
  --fm-forest-deep: #103c32;
  --fm-leaf: #256b58;
  --fm-leaf-soft: #d2dc1326;
  --fm-turmeric: #b95338;
  --fm-turmeric-soft: #f5e5df;
  --fm-accent-hover: #963d2a;
  --fm-accent-light: #ffc4ae;
  --fm-sage: #d2dc1326;
  --fm-sage-soft: #d2dc1326;
  --fm-clay: #587a8d;
  --fm-cream: #f4f7f5;
  --fm-paper: #fbfdfc;
  --fm-ink: #17251f;
  --fm-muted: #526159;
  --fm-line: rgba(23, 37, 31, 0.13);
  --fm-white-line: rgba(255, 255, 255, 0.2);
  --fm-display: Georgia, "Times New Roman", serif;
  --fm-sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --fm-container: 1280px;
  --fm-radius-sm: 12px;
  --fm-radius: 22px;
  --fm-radius-lg: 36px;
  --fm-shadow: 0 24px 70px rgba(16, 60, 50, 0.13);
}

body:not(.admin-body) {
  background: var(--fm-cream);
  color: var(--fm-ink);
  font-family: var(--fm-sans);
}

body:not(.admin-body) main {
  overflow: clip;
}

body:not(.admin-body) h1,
body:not(.admin-body) h2,
body:not(.admin-body) h3,
body:not(.admin-body) p {
  text-wrap: pretty;
}

body:not(.admin-body) h1,
body:not(.admin-body) h2 {
  font-family: var(--fm-display);
  font-weight: 600;
  letter-spacing: -0.045em;
}

body:not(.admin-body) a,
body:not(.admin-body) button,
body:not(.admin-body) input,
body:not(.admin-body) select,
body:not(.admin-body) textarea {
  font-family: var(--fm-sans);
}

body:not(.admin-body) :focus-visible {
  outline: 3px solid var(--fm-turmeric);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.nav-mobile-search {
  display: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--fm-forest-deep);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Shared navigation */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--fm-ink);
  background: transparent;
}

.site-header.scrolled {
  position: fixed;
  color: var(--fm-ink);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-product .site-header {
  color: var(--fm-ink);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-product .nav-brand-copy small {
  color: var(--fm-muted);
}

.page-product .nav-search,
.page-product .menu-toggle {
  border-color: var(--fm-line);
}

.nav-shell {
  width: min(var(--fm-container), calc(100% - 48px));
  height: 76px;
  margin-top: 12px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 36px rgba(16, 60, 50, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  padding: 6px 10px 6px 6px;
  border-radius: 16px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-brand-lockup:hover {
  background: var(--fm-turmeric);
}

.nav-brand-lockup img {
  width: 62px;
  height: 56px;
  padding: 5px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}

.nav-brand-copy {
  display: grid;
  line-height: 1;
}

.nav-brand-copy strong {
  color: var(--fm-ink);
  font-size: 17px;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.nav-brand-lockup:hover .nav-brand-copy strong {
  color: #fff;
}

.nav-brand-copy small {
  margin-top: 6px;
  color: rgba(23, 37, 31, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-brand-lockup:hover .nav-brand-copy small {
  color: #fff;
}

.site-header.scrolled .nav-brand-copy small {
  color: var(--fm-muted);
}

.nav-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-primary a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #111b16;
  font-size: 14px;
  font-weight: 750;
  text-shadow: none;
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: #fff;
  background: var(--fm-turmeric);
  transform: translateY(-1px);
}

.site-header.scrolled .nav-primary a {
  color: #111b16;
}

.site-header.scrolled .nav-primary a:hover,
.site-header.scrolled .nav-primary a[aria-current="page"] {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-search {
  width: 44px;
  height: 44px;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.site-header.scrolled .nav-search {
  border-color: var(--fm-line);
}

.nav-cta,
.primary-button,
.secondary-button {
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-shell .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff !important;
  background: var(--fm-turmeric);
  box-shadow: 0 12px 28px rgba(185, 83, 56, 0.24);
}

.nav-shell .nav-cta:hover {
  color: #fff !important;
  background: var(--fm-accent-hover);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.site-header.scrolled .menu-toggle {
  border-color: var(--fm-line);
}

/* Shared buttons and type */
.primary-button {
  background: var(--fm-turmeric);
  color: #fff;
  padding-inline: 24px;
  box-shadow: 0 10px 24px rgba(185, 83, 56, 0.18);
}

.primary-button:hover {
  color: #fff;
  background: var(--fm-accent-hover);
  box-shadow: 0 12px 28px rgba(156, 64, 44, 0.24);
}

main .fm-section .primary-button {
  width: fit-content;
  margin-inline: auto;
  justify-self: center;
}

.secondary-button {
  border: 1px solid var(--fm-line);
  background: var(--fm-paper);
  color: var(--fm-forest-deep);
  padding-inline: 24px;
}

.secondary-button:hover {
  border-color: var(--fm-forest);
  background: var(--fm-forest);
  color: #fff;
}

.button-arrow {
  position: relative;
  padding-right: 52px;
}

.button-arrow::after {
  content: "\2197";
  position: absolute;
  right: 22px;
  top: 50%;
  margin: 0;
  font-size: 16px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.button-arrow:hover::after,
.button-arrow:focus-visible::after {
  transform: translate(3px, calc(-50% - 3px));
}

.eyebrow,
.section-kicker {
  color: var(--fm-leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker.light,
.hero-section .eyebrow,
.page-hero .eyebrow {
  color: var(--fm-accent-light);
}

.section-intro {
  width: min(1040px, calc(100% - 64px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.section-intro h2 {
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
}

.section-intro > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--fm-muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-intro > .intro-light {
  color: rgba(255, 255, 255, 0.68);
}

.featured-product-shell {
  width: min(var(--fm-container), calc(100% - 64px));
  margin-inline: auto;
  padding: 0;
}

/* Home hero */
.hero-section.fm-hero {
  min-height: 800px;
  height: min(920px, 100svh);
  padding: 150px max(32px, calc((100vw - var(--fm-container)) / 2)) 84px;
  align-items: end;
  background: var(--fm-forest-deep);
}

.fm-hero .hero-image {
  filter: saturate(0.88) contrast(1.02);
}

.fm-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 30, 20, 0.9) 0%, rgba(5, 30, 20, 0.62) 43%, rgba(5, 30, 20, 0.16) 74%),
    linear-gradient(0deg, rgba(5, 30, 20, 0.46), transparent 45%);
}

.fm-hero .hero-copy {
  width: min(750px, 66%);
  padding-bottom: 34px;
}

.fm-hero .hero-copy h1 {
  max-width: 720px;
  font-family: var(--fm-display);
  font-size: clamp(62px, 7.2vw, 112px);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: none;
}

.fm-hero .hero-text {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
}

.fm-hero .hero-actions {
  margin-top: 34px;
}

.fm-hero .secondary-button {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.fm-hero .secondary-button:hover {
  background: #fff;
  color: var(--fm-forest-deep);
}

.fm-hero .hero-dots {
  left: max(32px, calc((100vw - var(--fm-container)) / 2));
  bottom: 44px;
}

/* Buyer path rail */
.buyer-rail {
  position: relative;
  z-index: 4;
  width: min(var(--fm-container), calc(100% - 64px));
  margin: -36px auto 0;
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--fm-radius);
  background: var(--fm-paper);
  box-shadow: var(--fm-shadow);
}

.buyer-rail-intro,
.buyer-path {
  min-height: 150px;
  padding: 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.buyer-rail-intro {
  background: var(--fm-sage);
}

.buyer-rail-intro span,
.buyer-path span {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.buyer-rail-intro strong {
  font-family: var(--fm-display);
  font-size: 29px;
  line-height: 1.05;
}

.buyer-path {
  border-left: 1px solid var(--fm-line);
  position: relative;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.buyer-path strong {
  display: block;
  font-size: 18px;
}

.buyer-path p {
  margin: 8px 0 0;
  color: var(--fm-muted);
  font-size: 13px;
  line-height: 1.5;
}

.buyer-path:hover {
  color: #fff;
  background: var(--fm-forest);
  box-shadow: inset 0 -5px var(--fm-turmeric);
}

.buyer-path:hover p {
  color: rgba(255, 255, 255, 0.72);
}

/* Homepage editorial sections */
.fm-section {
  padding: 120px 0;
}

.fm-section.compact {
  padding-block: 88px;
}

.fm-section.dark {
  color: var(--fm-ink);
  background: #d2dc1326;
}

.fm-section.sun {
  background: #d2dc1326;
}

.home-feature-card {
  width: min(1376px, calc(100% - 64px));
  margin: 48px auto 0;
  padding: 88px 48px;
  border: 1px solid rgba(23, 37, 31, 0.12);
  border-radius: var(--fm-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(16, 60, 50, 0.1);
}

.fm-section.home-quality-card {
  background: #d2dc1340;
}

.fm-section.home-products-card {
  margin-top: 32px;
  background: #d2dc1326;
}

.product-family-grid {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 285px);
  gap: 18px;
}

.product-family-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: var(--fm-radius);
  background: var(--fm-forest);
  color: #fff;
}

.product-family-card:first-child {
  grid-row: 1 / 3;
}

.product-family-card:nth-child(2) {
  grid-column: 2 / 4;
}

.product-family-card:nth-child(3) {
  grid-column: 2;
}

.product-family-card:nth-child(4) {
  grid-column: 3;
}

.product-family-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-family-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 30, 20, 0.86), rgba(5, 30, 20, 0.05) 72%);
}

.product-family-card:hover img {
  transform: scale(1.045);
}

.product-family-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 28px;
}

.product-family-copy span {
  color: var(--fm-accent-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-family-copy h3 {
  margin: 7px 0 0;
  font-family: var(--fm-display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 600;
  line-height: 1;
}

.product-family-card:not(:first-child) .product-family-copy h3 {
  font-size: 28px;
}

.process-layout {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.process-image {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border-radius: var(--fm-radius-lg);
}

.process-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-image-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 22px;
  border: 1px solid var(--fm-white-line);
  border-radius: 18px;
  background: rgba(8, 43, 29, 0.78);
  color: #fff;
  backdrop-filter: blur(12px);
}

.process-copy h2 {
  margin: 10px 0 22px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.98;
}

.process-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-copy > p {
  max-width: 690px;
  color: var(--fm-muted);
  font-size: 18px;
  line-height: 1.8;
}

.process-steps {
  width: 100%;
  margin: 36px 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
  text-align: left;
}

.process-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--fm-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(16, 60, 50, 0.05);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.process-steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 128, 105, 0.38);
  background: #fff;
  box-shadow: 0 18px 36px rgba(16, 60, 50, 0.12);
}

.process-steps span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fm-turmeric);
  color: #fff;
  font-weight: 900;
}

.process-steps strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  transition: color 180ms ease;
}

.process-steps li:hover strong {
  color: var(--fm-leaf);
}

.process-steps small {
  color: var(--fm-muted);
  font-size: 14px;
  line-height: 1.55;
}

.belief-grid {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.belief-card {
  min-height: 420px;
  padding: 48px;
  border: 1px solid var(--fm-line);
  border-radius: var(--fm-radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 32px rgba(16, 60, 50, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  text-align: center;
}

.belief-card-featured {
  color: var(--fm-forest-deep);
  background: #d2dc1326;
  border-color: rgba(47, 128, 105, 0.22);
}

.belief-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 128, 105, 0.38);
  box-shadow: 0 22px 48px rgba(16, 60, 50, 0.13);
}

.belief-card > span {
  display: block;
  color: var(--fm-turmeric);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.belief-card-featured > span {
  color: var(--fm-accent-hover);
}

.belief-card h3 {
  margin: 76px 0 20px;
  font-family: var(--fm-display);
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 600;
  line-height: 1.02;
}

.belief-card p {
  max-width: 570px;
  margin-inline: auto;
  color: rgba(8, 43, 29, 0.72);
  line-height: 1.7;
}

.mission-list {
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
}

.mission-list li {
  padding: 17px 0 17px 34px;
  position: relative;
  border-top: 1px solid var(--fm-line);
  color: var(--fm-muted);
  line-height: 1.55;
  transition: color 180ms ease, padding-left 180ms ease, background 180ms ease;
}

.mission-list li:hover {
  padding-left: 40px;
  color: var(--fm-forest-deep);
  background: #d2dc1326;
}

.mission-list li:last-child {
  border-bottom: 1px solid var(--fm-line);
}

.mission-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fm-turmeric);
  font-weight: 900;
}

.reason-grid {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.reason-grid article {
  flex: 0 1 calc((100% - 54px) / 4);
  min-height: 180px;
  padding: 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  text-align: center;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 26px rgba(16, 60, 50, 0.05);
  transition: color 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.reason-grid article:hover {
  color: var(--fm-forest-deep);
  background: #fff;
  border-color: rgba(47, 128, 105, 0.38);
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.reason-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fm-accent-hover);
  background: var(--fm-turmeric-soft);
  font-size: 12px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.reason-grid article:hover span {
  color: #fff;
  background: var(--fm-accent-hover);
}

.reason-grid .reason-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reason-grid strong {
  font-family: var(--fm-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
}

.promise-banner {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  padding: 68px;
  overflow: hidden;
  position: relative;
  border-radius: var(--fm-radius-lg);
  background: #06271a;
  color: #fff;
}

.section-background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
}

.promise-banner::after,
.trade-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 39, 26, 0.94), rgba(6, 39, 26, 0.58));
}

.promise-banner > :not(.section-background-image),
.trade-banner > :not(.section-background-image) {
  position: relative;
  z-index: 2;
}

.promise-banner h2 {
  max-width: 900px;
  margin: 10px 0 22px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 0.98;
}

.promise-banner > p:not(.section-kicker) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.7;
}

.promise-signoff {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.promise-signoff strong {
  font-family: var(--fm-display);
  font-size: 26px;
}

.promise-signoff span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--fm-turmeric);
  font-size: 12px;
  font-weight: 900;
}

.export-story {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
  gap: 80px;
  align-items: stretch;
}

.export-story-cards {
  display: grid;
  gap: 18px;
}

.export-story-cards article {
  min-height: 210px;
  padding: 34px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--fm-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(16, 60, 50, 0.06);
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.export-story-cards article:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 83, 56, 0.38);
  background: #fff;
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.export-story-cards span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--fm-turmeric);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.export-story-cards p {
  max-width: 720px;
  margin: 0;
  color: var(--fm-muted);
  font-size: 17px;
  line-height: 1.75;
}

.export-story aside {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
  border-radius: var(--fm-radius);
  background: var(--fm-sage);
  color: var(--fm-forest-deep);
}

.export-story aside span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.export-story aside strong {
  font-family: var(--fm-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

.export-strength-grid {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.export-strength-grid article {
  min-height: 220px;
  padding: 30px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  text-align: center;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 26px rgba(16, 60, 50, 0.05);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.export-strength-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 105, 0.38);
  background: #fff;
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.export-strength-grid span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fm-accent-hover);
  background: var(--fm-turmeric-soft);
  font-size: 12px;
  font-weight: 900;
}

.export-strength-grid strong {
  max-width: 300px;
  font-family: var(--fm-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.fm-section.dark .section-kicker.light {
  color: var(--fm-leaf);
}

.fm-section.dark .section-intro > .intro-light {
  color: var(--fm-muted);
}

.trade-banner {
  width: min(var(--fm-container), calc(100% - 64px));
  min-height: 520px;
  margin: 0 auto;
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.6fr);
  align-items: end;
  gap: 70px;
  overflow: hidden;
  position: relative;
  border-radius: var(--fm-radius-lg);
  background: #06271a;
  color: #fff;
}

.trade-banner > div:first-of-type {
  display: grid;
  justify-items: center;
  text-align: center;
}

.trade-banner h2 {
  margin: 10px 0 20px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.95;
}

.trade-banner p {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.75;
  margin-inline: auto;
}

.trade-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.trade-list li {
  padding: 17px 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--fm-white-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.trade-list li:hover {
  transform: translateX(6px);
  border-color: rgba(241, 170, 145, 0.7);
  background: rgba(185, 83, 56, 0.2);
}

.trade-list li::after {
  content: "↗";
  color: var(--fm-accent-light);
}

.final-cta {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  padding: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 40px;
  border-radius: var(--fm-radius-lg);
  background: var(--fm-sage);
  color: var(--fm-forest-deep);
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
}

.final-cta p {
  max-width: 680px;
  margin: 16px auto 0;
  line-height: 1.65;
}

.final-cta .primary-button {
  background: var(--fm-forest-deep);
}

/* Interior page hero and layout */
.page-hero {
  min-height: 580px;
  padding: 180px max(32px, calc((100vw - var(--fm-container)) / 2)) 84px;
  align-items: end;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  z-index: 1;
  background-image: linear-gradient(90deg, rgba(5, 30, 20, 0.91), rgba(5, 30, 20, 0.5) 55%, rgba(5, 30, 20, 0.12));
}

.page-hero > div {
  z-index: 2;
  width: min(920px, 76%);
}

.page-hero h1 {
  font-family: var(--fm-display);
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: none;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.content-box {
  width: 100%;
  padding: 0;
  gap: 0;
}

.content-box > .story-section,
.content-box > .products-section,
.content-box > .recipe-section,
.content-box > .video-section,
.content-box > .contact-section,
.content-box > .page-links-section {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 110px auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.story-section {
  gap: 100px;
}

.story-section h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.story-copy {
  color: var(--fm-muted);
}

.page-about .content-box > .about-story-card {
  padding: clamp(42px, 5vw, 72px);
  border: 2px solid var(--fm-ink);
  border-radius: var(--fm-radius-lg);
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 60, 50, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  text-align: center;
}

.page-about .content-box > .about-story-card:hover {
  transform: translateY(-6px);
  border-color: var(--fm-accent-hover);
  box-shadow: 0 28px 62px rgba(16, 60, 50, 0.15);
}

.page-about .about-story-card .story-copy {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.page-about .about-feature-card {
  width: min(1376px, calc(100% - 64px));
  margin: 32px auto 0;
  padding: 88px 48px;
  border: 1px solid rgba(23, 37, 31, 0.14);
  border-radius: var(--fm-radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 58px rgba(16, 60, 50, 0.09);
}

.page-about .about-guide-card {
  background: #fff;
}

.page-about .about-process-card {
  background: #d2dc1340;
}

.page-about .about-process-intro {
  margin-bottom: 54px;
}

.page-about .about-process-intro h2,
.page-about .about-process-intro > p {
  margin-inline: auto;
  text-align: center;
}

.page-about .about-process-card .process-layout {
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
}

.quality-grid {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto 110px;
  gap: 16px;
}

.quality-grid article {
  min-height: 290px;
  padding: 30px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--fm-line);
  border-radius: var(--fm-radius);
  box-shadow: 0 8px 26px rgba(16, 60, 50, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  text-align: center;
}

.quality-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 83, 56, 0.36);
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.quality-grid article:nth-child(2) {
  background: var(--fm-forest);
  color: #fff;
}

.quality-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.7);
}

.quality-grid article:nth-child(3) {
  background: var(--fm-sage-soft);
}

.quality-grid article:nth-child(3) p {
  color: var(--fm-muted);
}

.quality-icon {
  width: 52px;
  height: 52px;
  background: var(--fm-turmeric);
  color: #fff;
}

.quality-grid h3 {
  margin-top: 30px;
  font-family: var(--fm-display);
  font-size: 29px;
  font-weight: 600;
  text-align: center;
}

.quality-grid p {
  max-width: 340px;
  margin-inline: auto;
  text-align: center;
}

/* Product listing */
.products-section .section-heading {
  margin-bottom: 38px;
}

.products-section .section-heading h2 {
  font-size: clamp(44px, 5vw, 70px);
}

.filter-tabs {
  padding: 6px;
  border: 1px solid var(--fm-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.filter-tabs button {
  min-height: 42px;
  border: 0;
  background: transparent;
}

.filter-tabs button.active {
  color: #fff;
  background: var(--fm-forest);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  min-width: 0;
  padding: 0;
  grid-template-rows: 360px auto auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 37, 31, 0.1);
  border-radius: var(--fm-radius);
  background: var(--fm-paper);
  box-shadow: 0 10px 32px rgba(16, 60, 50, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-7px);
  background: #fff;
  border-color: rgba(47, 128, 105, 0.3);
  box-shadow: 0 24px 56px rgba(16, 60, 50, 0.16);
}

.product-card:focus-within {
  border-color: var(--fm-leaf);
  box-shadow: 0 0 0 4px rgba(185, 83, 56, 0.22), 0 24px 56px rgba(16, 60, 50, 0.14);
}

.product-visual {
  border-radius: 0;
  background: #ebe9df;
}

.product-image-card {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

.product-card > div:not(.product-meta) {
  padding: 24px 24px 0;
  text-align: center;
}

.product-card h3 {
  margin: 0 0 8px;
  font-family: var(--fm-display);
  font-size: 29px;
  font-weight: 600;
}

.product-card p {
  margin: 0;
}

.product-meta {
  margin: 0;
  padding: 24px;
  align-self: end;
  justify-content: center;
  border-top: 0;
  text-align: center;
}

.detail-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--fm-turmeric);
  box-shadow: 0 8px 20px rgba(185, 83, 56, 0.16);
}

.detail-link:hover {
  color: #fff;
  background: var(--fm-accent-hover);
  transform: translateX(3px);
}

.product-guide {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto 110px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: var(--fm-ink);
}

.product-guide > div {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.product-guide .section-kicker.light {
  color: var(--fm-accent-hover);
}

.product-guide h2 {
  margin: 8px 0 0;
  font-size: 42px;
  line-height: 0.98;
}

.product-guide article {
  min-height: 240px;
  padding: 30px;
  display: grid;
  align-content: start;
  justify-items: center;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  background: var(--fm-paper);
  box-shadow: 0 8px 26px rgba(16, 60, 50, 0.06);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  text-align: center;
}

.product-guide article:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 105, 0.38);
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.product-guide article span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--fm-accent-hover);
  background: var(--fm-turmeric-soft);
  font-size: 12px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.product-guide .guide-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-guide article:hover .guide-icon {
  color: #fff;
  background: var(--fm-accent-hover);
}

.product-guide article h3 {
  margin: 18px 0 10px;
  font-family: var(--fm-display);
  font-size: 24px;
}

.product-guide article p {
  color: var(--fm-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Product detail */
.product-detail-shell {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  padding: 150px 0 110px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 78px;
  align-items: center;
}

.product-detail-media {
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--fm-radius-lg);
  background: #ebe9df;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
}

.product-detail-copy h1 {
  margin: 10px 0 20px;
  font-family: var(--fm-display);
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.92;
}

.product-detail-description {
  color: var(--fm-muted);
  font-size: 18px;
  line-height: 1.8;
}

.product-facts {
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--fm-line);
  list-style: none;
}

.product-facts li {
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--fm-line);
}

.product-facts span {
  color: var(--fm-muted);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Contact */
.contact-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  align-items: start;
  gap: 70px;
}

.contact-intro h2 {
  font-size: clamp(48px, 5vw, 72px);
}

.contact-intro > p:not(.eyebrow) {
  color: var(--fm-muted);
  line-height: 1.75;
}

.contact-cards {
  gap: 14px;
  margin-top: 32px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--fm-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(16, 60, 50, 0.06);
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.contact-card:last-child {
  border-bottom: 1px solid var(--fm-line);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 83, 56, 0.42);
  background: #fff;
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.contact-card-top {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-card .contact-card-icon {
  width: 42px;
  height: 42px;
  margin: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--fm-turmeric);
  background: var(--fm-turmeric-soft);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card .contact-card-label {
  margin: 0;
  color: var(--fm-leaf);
  letter-spacing: 0.12em;
}

.contact-card strong {
  font-family: var(--fm-display);
  font-size: 23px;
  font-weight: 600;
  transition: color 180ms ease;
}

.contact-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-card:hover strong,
.contact-card a:hover strong {
  color: var(--fm-accent-hover);
}

.contact-card p {
  max-width: 460px;
  margin-inline: auto;
  color: var(--fm-muted);
  line-height: 1.65;
}

.inquiry-types {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

.inquiry-types span {
  color: var(--fm-forest-deep);
  background: var(--fm-sage-soft);
  border-color: rgba(47, 128, 105, 0.18);
  cursor: default;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.inquiry-types span:hover {
  transform: translateY(-3px);
  color: #fff;
  background: var(--fm-turmeric);
  border-color: var(--fm-turmeric);
  box-shadow: 0 10px 22px rgba(185, 83, 56, 0.2);
}

.contact-form {
  padding: 44px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--fm-line);
  border-radius: var(--fm-radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), #d2dc1326),
    var(--fm-paper);
  box-shadow: var(--fm-shadow);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--fm-turmeric), var(--fm-sage), var(--fm-forest));
}

.inquiry-form-heading {
  max-width: 560px;
  margin: 0 auto 30px;
  text-align: center;
}

.contact-form h3 {
  margin: 8px 0 12px;
  font-family: var(--fm-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.02;
}

.inquiry-form-heading > p:last-child {
  margin: 0;
  color: var(--fm-muted);
  line-height: 1.65;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  gap: 9px;
  color: var(--fm-ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.search-input {
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--fm-line);
  border-radius: 11px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(47, 128, 105, 0.38);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--fm-turmeric);
  box-shadow: 0 0 0 4px rgba(185, 83, 56, 0.13);
}

.contact-form textarea {
  min-height: 170px;
}

.contact-form button {
  width: 100%;
}

.inquiry-checklist {
  margin: 2px 0 4px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
}

.inquiry-checklist li {
  padding: 8px 11px;
  border: 1px solid rgba(47, 128, 105, 0.18);
  border-radius: 999px;
  color: var(--fm-forest-deep);
  background: var(--fm-sage-soft);
  font-size: 12px;
  font-weight: 800;
}

.inquiry-checklist li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--fm-leaf);
}

.form-privacy {
  display: block;
  max-width: 560px;
  margin-inline: auto;
  color: var(--fm-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.privacy-consent {
  max-width: 680px;
  margin-inline: auto;
  padding: 15px 18px;
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--fm-line);
  border-radius: var(--fm-radius-sm);
  background: rgba(255, 255, 255, 0.62);
  color: var(--fm-muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
}

.privacy-consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--fm-forest);
}

.privacy-consent a,
.privacy-card a {
  color: var(--fm-accent-hover);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-card {
  width: min(920px, 100%);
  margin: 0 auto 100px;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--fm-ink);
  border-radius: var(--fm-radius-lg);
  background: #fff;
  box-shadow: var(--fm-shadow);
}

.privacy-card h2 {
  margin: 42px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.privacy-card .section-kicker + h2 {
  margin-top: 14px;
}

.privacy-card p {
  color: var(--fm-muted);
  font-size: 16px;
  line-height: 1.8;
}

.privacy-card .privacy-updated {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--fm-line);
  font-size: 13px;
}

.inquiry-flow {
  padding: 100px max(32px, calc((100vw - var(--fm-container)) / 2));
  background: #d2dc1326;
}

.inquiry-flow-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.inquiry-flow-heading h2 {
  margin: 8px 0 16px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
}

.inquiry-flow-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--fm-muted);
  font-size: 17px;
  line-height: 1.7;
}

.inquiry-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.inquiry-flow-grid article {
  min-height: 260px;
  padding: 32px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  border: 1px solid var(--fm-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(16, 60, 50, 0.06);
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.inquiry-flow-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 83, 56, 0.38);
  background: #fff;
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.inquiry-flow-grid span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--fm-turmeric);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-flow-grid strong {
  max-width: 290px;
  font-family: var(--fm-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
}

.inquiry-flow-grid p {
  margin: 0;
  color: var(--fm-muted);
  line-height: 1.65;
}

/* Recipe and video editorial treatment */
.recipe-panel {
  border-radius: var(--fm-radius);
  background: var(--fm-forest);
}

.recipe-list article,
.video-card {
  border: 1px solid var(--fm-line);
  border-radius: var(--fm-radius);
  box-shadow: 0 8px 26px rgba(16, 60, 50, 0.06);
}

.recipe-list article {
  align-content: center;
  justify-items: center;
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.recipe-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 83, 56, 0.38);
  background: #fff;
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.recipe-list span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--fm-turmeric);
}

.recipe-list h3,
.recipe-list p {
  max-width: 360px;
  margin-inline: auto;
  text-align: center;
}

.recipe-list h3 {
  margin-block: 18px 8px;
  font-family: var(--fm-display);
  font-size: clamp(24px, 2.4vw, 32px);
}

.recipe-list p {
  color: var(--fm-muted);
  line-height: 1.7;
}

.video-card {
  overflow: hidden;
  background: var(--fm-paper);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.video-card:hover,
.video-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(185, 83, 56, 0.38);
  box-shadow: 0 20px 44px rgba(16, 60, 50, 0.13);
}

.video-card-copy {
  padding: 22px 24px 26px;
  text-align: center;
}

.video-card-copy h3 {
  margin: 0;
  font-family: var(--fm-display);
  font-size: 24px;
}

.video-card-copy p {
  margin: 8px 0 0;
  color: var(--fm-muted);
}

.video-placeholder {
  min-height: 420px;
}

/* Drawer and modal */
.drawer {
  z-index: 90;
  width: min(480px, 100%);
  padding: 26px;
  color: var(--fm-ink);
  background: var(--fm-paper);
}

.backdrop {
  z-index: 89;
}

.drawer-header .icon-button,
.product-preview-close,
.video-preview-close {
  width: 44px;
  height: 44px;
}

.drawer-product {
  border-radius: var(--fm-radius-sm);
}

.product-preview-dialog,
.video-preview-dialog {
  border-radius: var(--fm-radius);
  background: var(--fm-paper);
}

/* Footer */
.site-footer {
  padding: 0;
  color: #fff;
  background: var(--fm-forest-deep);
}

.footer-box {
  width: min(var(--fm-container), calc(100% - 64px));
  padding: 80px 0 58px;
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
  gap: 56px;
}

.footer-brand-block {
  max-width: 360px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-row img {
  width: 68px;
  height: 60px;
  padding: 6px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.site-footer .footer-brand {
  font-family: var(--fm-display);
  font-size: 30px;
  font-weight: 600;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--fm-accent-light);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: var(--fm-accent-light);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer .footer-social-links {
  margin-top: 22px;
}

.site-footer .footer-social-links a {
  min-width: 44px;
  height: 44px;
}

.site-footer .footer-copyright {
  width: min(var(--fm-container), calc(100% - 64px));
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid var(--fm-white-line);
  color: rgba(255, 255, 255, 0.62);
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-shell {
    width: min(100% - 32px, var(--fm-container));
  }

  .site-header.menu-open .nav-shell {
    width: min(100% - 32px, var(--fm-container));
    min-height: 76px;
    height: 76px;
    margin-top: 12px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    align-content: normal;
    gap: 30px;
    overflow: visible;
    border: 1px solid transparent;
    border-radius: 22px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-toggle {
    display: inline-grid;
    flex: 0 0 auto;
    order: 3;
  }

  .nav-primary {
    position: fixed;
    inset: -12px auto auto -1px;
    width: min(380px, 88vw);
    height: calc(100dvh + 12px);
    min-height: calc(100vh + 12px);
    padding: 120px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    color: #fff;
    background: var(--fm-forest-deep);
    transform: translateX(-105%);
    transition: transform 260ms ease;
    box-shadow: 30px 0 70px rgba(0, 0, 0, 0.25);
    z-index: 2;
    will-change: transform;
  }

  .site-header.menu-open .nav-primary {
    transform: translateX(0);
  }

  .site-header.menu-open .nav-brand-lockup,
  .site-header.menu-open .menu-toggle {
    position: relative;
    z-index: 4;
  }

  .site-header.menu-open .menu-toggle {
    color: #fff;
  }

  .site-header.menu-open .nav-cta {
    visibility: hidden;
  }

  .nav-primary a {
    min-height: 54px;
    padding-inline: 18px;
    color: #fff;
    font-size: 18px;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-search {
    display: none;
  }

  .nav-mobile-search {
    min-height: 54px;
    margin-top: 10px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 18px;
    cursor: pointer;
  }

  .nav-mobile-search:hover,
  .nav-mobile-search:focus-visible {
    border-color: var(--fm-accent-light);
    background: var(--fm-turmeric);
  }

  .nav-mobile-search svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
  }

  .buyer-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .buyer-rail-intro {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .product-family-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 470px 300px;
  }

  .product-family-card:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .product-family-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .product-family-card:nth-child(3),
  .product-family-card:nth-child(4) {
    grid-column: auto;
    grid-row: 2;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-image {
    min-height: 520px;
  }

  .trade-banner {
    grid-template-columns: 1fr;
  }

  .product-guide {
    grid-template-columns: 1fr 1fr;
  }

  .product-guide > div {
    grid-column: 1 / -1;
  }

  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid article {
    flex-basis: calc((100% - 18px) / 2);
  }

  .export-story {
    gap: 42px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .inquiry-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inquiry-flow-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    height: 78px;
  }

  .nav-brand-lockup img {
    width: 54px;
    height: 48px;
  }

  .nav-brand-copy small {
    display: none;
  }

  .nav-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-section.fm-hero {
    min-height: 720px;
    height: 100svh;
    padding: 130px 24px 82px;
    align-items: end;
  }

  .fm-hero .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 30, 20, 0.94), rgba(5, 30, 20, 0.24) 74%),
      linear-gradient(90deg, rgba(5, 30, 20, 0.6), transparent);
  }

  .fm-hero .hero-copy {
    width: 100%;
    padding-bottom: 38px;
  }

  .fm-hero .hero-copy h1 {
    font-size: clamp(54px, 16vw, 78px);
    line-height: 0.88;
  }

  .fm-hero .hero-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .fm-hero .hero-actions {
    margin-top: 24px;
  }

  .fm-hero .hero-actions a {
    flex: 1 1 140px;
  }

  .fm-hero .hero-dots {
    display: none;
  }

  .buyer-rail {
    width: calc(100% - 32px);
    margin-top: 16px;
    grid-template-columns: 1fr;
  }

  .buyer-rail-intro,
  .buyer-path {
    min-height: auto;
    padding: 22px;
  }

  .buyer-path {
    border-top: 1px solid var(--fm-line);
    border-left: 0;
  }

  .fm-section {
    padding: 84px 0;
  }

  .home-feature-card {
    width: calc(100% - 28px);
    margin-top: 28px;
    padding: 64px 20px;
    border-radius: 26px;
  }

  .fm-section.home-products-card {
    margin-top: 20px;
  }

  .section-intro {
    width: calc(100% - 40px);
    margin-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-intro h2 {
    font-size: 44px;
  }

  .product-family-grid {
    width: calc(100% - 32px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 300px);
  }

  .product-family-card,
  .product-family-card:first-child,
  .product-family-card:nth-child(2),
  .product-family-card:nth-child(3),
  .product-family-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  .process-layout {
    width: calc(100% - 40px);
    gap: 48px;
  }

  .process-image {
    min-height: 420px;
    border-radius: var(--fm-radius);
  }

  .process-copy h2 {
    font-size: 45px;
  }

  .belief-grid {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .belief-card {
    min-height: auto;
    padding: 34px 26px;
  }

  .belief-card h3,
  .mission-list {
    margin-top: 40px;
  }

  .reason-grid {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .reason-grid article {
    flex-basis: 100%;
    min-height: 140px;
  }

  .promise-banner {
    width: calc(100% - 32px);
    padding: 42px 26px;
    border-radius: var(--fm-radius);
  }

  .promise-banner h2 {
    font-size: 43px;
  }

  .promise-signoff {
    align-items: flex-start;
    flex-direction: column;
  }

  .export-story {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .export-story aside {
    padding: 30px 26px;
    gap: 44px;
  }

  .export-strength-grid {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .export-strength-grid article {
    min-height: 150px;
  }

  .trade-banner {
    width: calc(100% - 32px);
    min-height: 630px;
    padding: 34px 26px;
    border-radius: var(--fm-radius);
  }

  .trade-banner h2 {
    font-size: 46px;
  }

  .final-cta {
    width: calc(100% - 32px);
    padding: 36px 26px;
    grid-template-columns: 1fr;
    border-radius: var(--fm-radius);
  }

  .final-cta h2 {
    font-size: 43px;
  }

  .page-hero {
    min-height: 520px;
    padding: 150px 24px 58px;
  }

  .page-hero > div {
    width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(50px, 14vw, 70px);
  }

  .content-box > .story-section,
  .content-box > .products-section,
  .content-box > .recipe-section,
  .content-box > .video-section,
  .content-box > .contact-section,
  .content-box > .page-links-section,
  .quality-grid,
  .product-guide,
  .product-detail-shell {
    width: calc(100% - 40px);
    margin-block: 78px;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  .story-section-centered {
    text-align: left;
  }

  .page-about .content-box > .about-story-card {
    padding: 40px 24px;
    text-align: center;
  }

  .page-about .about-story-card,
  .page-about .about-story-card .story-copy {
    text-align: center;
  }

  .page-about .about-feature-card {
    width: calc(100% - 28px);
    margin-top: 20px;
    padding: 64px 20px;
    border-radius: 26px;
  }

  .page-about .about-process-intro {
    width: 100%;
    margin-bottom: 36px;
  }

  .page-about .about-process-card .process-layout {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .quality-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
  }

  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

  .product-card {
    grid-template-rows: 320px auto auto;
  }

  .product-guide {
    grid-template-columns: 1fr;
  }

  .product-guide > div {
    grid-column: 1;
  }

  .product-guide article {
    min-height: auto;
    padding: 26px;
    border: 1px solid var(--fm-line);
  }

  .product-detail-shell {
    padding: 120px 0 78px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-detail-media {
    min-height: 420px;
  }

  .product-detail-copy h1 {
    font-size: 54px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 26px 20px;
    border-radius: var(--fm-radius);
  }

  .inquiry-form-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-flow {
    padding: 78px 20px;
  }

  .inquiry-flow-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-flow-grid article,
  .inquiry-flow-grid article:last-child {
    grid-column: 1;
    min-height: auto;
    padding: 28px 22px;
  }

  .footer-box {
    width: calc(100% - 40px);
    padding-top: 60px;
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .site-footer .footer-copyright {
    width: calc(100% - 40px);
  }
}

@media (max-width: 430px) {
  .nav-brand-copy {
    display: none;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .fm-hero .hero-copy h1 {
    font-size: 53px;
  }

  .footer-box {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-primary,
  .product-family-card img {
    transition: none;
  }
}
