:root {
  --green-900: #103713;
  --green-800: #154718;
  --green-700: #1d5a22;
  --gold-500: #e7a818;
  --gold-600: #dfad17;
  --gold-700: #b97e12;
  --gold-100: rgba(231, 168, 24, 0.16);
  --neutral-50: #fcfbf8;
  --neutral-100: #f4f2ec;
  --neutral-200: #e2dcd0;
  --neutral-300: #cfc6b7;
  --ink-900: #17211a;
  --ink-700: #34443a;
  --ink-500: #627065;
  --white: #ffffff;
  --shadow-soft: 0 20px 44px rgba(16, 55, 19, 0.08);
  --shadow-card: 0 14px 30px rgba(16, 55, 19, 0.06);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --border-soft: 1px solid rgba(16, 55, 19, 0.1);
  --container: min(1140px, calc(100% - 2rem));
  --header-height: 74px;
  --header-height-compact: 60px;
  --header-surface: rgba(252, 251, 248, 0.92);
  --header-surface-compact: rgba(252, 251, 248, 0.98);
  --header-shadow: 0 12px 28px rgba(16, 55, 19, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 242, 236, 0.92)),
    radial-gradient(circle at top left, rgba(231, 168, 24, 0.08), transparent 30%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-surface);
  border-bottom: 1px solid rgba(16, 55, 19, 0.08);
  backdrop-filter: blur(14px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header .container {
  width: min(1260px, calc(100% - 2rem));
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 0.95rem;
  align-items: center;
  min-height: var(--header-height);
  padding: 0.25rem 0;
  transition: min-height 0.25s ease, gap 0.25s ease, padding 0.25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(176px, 18vw, 212px);
  height: auto;
  transition: width 0.25s ease;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--green-900);
  color: var(--white);
  padding: 0.62rem 0.88rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
  min-width: 0;
}

.nav-link {
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  color: var(--ink-700);
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(21, 71, 24, 0.08);
  color: var(--green-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.1rem;
  padding: 0.82rem 1.16rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 1rem;
  height: 1rem;
  flex: none;
  fill: currentColor;
}

.button--primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(21, 71, 24, 0.18);
}

.button--primary:hover {
  background: var(--green-900);
}

.button--secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: rgba(21, 71, 24, 0.16);
}

.button--secondary:hover {
  background: rgba(21, 71, 24, 0.035);
  border-color: rgba(21, 71, 24, 0.28);
}

.button--nav {
  background: rgba(231, 168, 24, 0.14);
  color: var(--green-900);
  border-color: rgba(223, 173, 23, 0.25);
  white-space: nowrap;
  min-height: 2.95rem;
  padding-inline: 1.02rem;
  font-size: 0.92rem;
}

body.is-scrolled .site-header {
  background: var(--header-surface-compact);
  box-shadow: var(--header-shadow);
}

body.is-scrolled .header-inner {
  min-height: var(--header-height-compact);
  gap: 0.78rem;
  padding: 0.16rem 0;
}

body.is-scrolled .brand img {
  width: clamp(156px, 15vw, 182px);
}

body.is-scrolled .nav-link {
  padding: 0.42rem 0.66rem;
}

body.is-scrolled .button--nav {
  min-height: 2.8rem;
  padding: 0.68rem 0.96rem;
}

.hero-brand-strip {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.hero-brand-mark {
  width: 3.3rem;
  height: 3.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(16, 55, 19, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 242, 236, 0.62));
  box-shadow: 0 12px 24px rgba(16, 55, 19, 0.06);
}

.hero-brand-mark img {
  width: 1.9rem;
  height: 1.9rem;
}

.hero-brand-text {
  display: grid;
  gap: 0.2rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(16, 55, 19, 0.12);
}

.hero-brand-name {
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  color: var(--green-800);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-brand-slogan {
  color: var(--ink-700);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  max-width: 27rem;
}

.page-hero--home .section-heading h1 {
  max-width: 12ch;
  font-size: clamp(2.12rem, 3.7vw, 3.45rem);
}

.page-hero--home .section-heading p {
  max-width: 40rem;
  font-size: 1rem;
}

.page-hero--home .button {
  min-width: 8rem;
}

.page-hero--home .button--secondary:hover {
  background: rgba(21, 71, 24, 0.05);
  box-shadow: 0 10px 24px rgba(16, 55, 19, 0.06);
}

.home-operations .section-heading,
.home-categories .section-heading {
  max-width: 52rem;
}

.category-teaser--link {
  display: grid;
  gap: 0.7rem;
  min-height: 100%;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-teaser--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 55, 19, 0.08);
  border-color: rgba(21, 71, 24, 0.16);
}

.category-teaser--link h3 {
  margin-bottom: 0.2rem;
}

.page-main {
  overflow: clip;
}

.page-main [id] {
  scroll-margin-top: 6rem;
}

.section {
  padding: 4.35rem 0;
}

.section--compact {
  padding: 3.15rem 0;
}

.section--tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(226, 220, 208, 0.36));
}

.section--plain {
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.88rem;
  color: var(--green-800);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.15rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), rgba(231, 168, 24, 0.18));
}

.eyebrow--soft {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
}

.eyebrow--soft::before {
  width: 2rem;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 1.55rem;
}

.section-heading h1,
.section-heading h2 {
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink-900);
}

.section-heading h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
}

.section-heading h2 {
  font-size: clamp(1.78rem, 3.2vw, 2.85rem);
}

.section-heading p,
.lead {
  margin-top: 0.85rem;
  max-width: 46rem;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.68;
}

.page-hero {
  position: relative;
  padding: 3.95rem 0 3.2rem;
}

.page-hero--home {
  padding-top: 4.25rem;
}

.page-hero--products {
  padding-bottom: 2.95rem;
}

.page-hero--services .section-heading {
  max-width: 44rem;
}

.hero-panel--photo.services-hero-visual {
  width: min(100%, 31.25rem);
  max-width: 31.25rem;
  justify-self: end;
  align-self: center;
  display: block;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(34, 45, 32, 0.14);
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.hero-panel--photo.services-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  object-position: center center;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero--products .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.page-hero--products .page-hero-copy {
  max-width: 52rem;
}

.page-hero--products .section-heading {
  margin-bottom: 0;
}

.page-hero--about {
  padding-top: 3.35rem;
  padding-bottom: 2.9rem;
}

.page-hero--about .section-heading {
  max-width: 45rem;
  margin-bottom: 0;
}

.page-hero--about .section-heading h1 {
  max-width: 13ch;
  font-size: clamp(2.12rem, 3.6vw, 3.28rem);
  line-height: 1.08;
}

.page-hero--about .section-heading p {
  max-width: 43rem;
  margin-top: 0.8rem;
}

.page-hero--about .eyebrow {
  margin-bottom: 0.76rem;
}

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.82fr);
  align-items: start;
  gap: clamp(2.25rem, 3.6vw, 2.75rem);
  margin: 2rem 0 3.5rem;
}

.about-hero-layout__content {
  min-width: 0;
}

.about-hero-layout__visual {
  width: 100%;
  max-width: 24.5rem;
  justify-self: end;
  margin: 1.125rem 0 0;
}

.about-hero-layout__image {
  width: 100%;
  display: block;
  max-height: 27.5rem;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: 1.625rem;
  box-shadow: 0 16px 34px rgba(27, 25, 21, 0.12);
}

@media (max-width: 56rem) {
  .about-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-hero-layout__visual {
    max-width: 30rem;
    justify-self: center;
    margin-top: 0;
  }

  .about-hero-layout__image {
    max-height: none;
    aspect-ratio: auto;
  }
}

@media (max-width: 40rem) {
  .about-hero-layout {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  .about-hero-layout__visual {
    max-width: 100%;
  }
}

.about-overview-section {
  padding-top: 3.45rem;
  padding-bottom: 3.2rem;
}

.about-overview-grid {
  max-width: 60rem;
  margin-inline: auto;
  gap: 1.05rem;
  align-items: stretch;
}

.about-overview-card {
  min-height: 100%;
  padding: 1.45rem;
}

.about-overview-card h2 {
  margin-bottom: 0.92rem;
  font-size: clamp(1.42rem, 2vw, 1.74rem);
  line-height: 1.14;
}

.about-direction-section .section-heading {
  max-width: 34rem;
}

.about-direction-grid {
  max-width: 58rem;
  margin-inline: auto;
  gap: 1.05rem;
}

.about-direction-card {
  min-height: 100%;
  padding: 1.42rem 1.45rem;
}

.about-principles-section .section-heading {
  max-width: 35rem;
}

.about-principles-grid {
  max-width: 64rem;
  margin-inline: auto;
  gap: 1rem;
}

.about-principle-card {
  min-height: 100%;
  padding: 1.34rem 1.32rem;
}

.about-principle-card h3 {
  margin-bottom: 0.72rem;
}

.about-cta-section {
  padding-top: 1.75rem;
  padding-bottom: 2.55rem;
}

.about-cta-band {
  max-width: 38rem;
  margin-inline: auto;
  padding: 1.18rem 1.28rem;
  gap: 0.62rem;
}

.about-cta-band h2 {
  max-width: 15ch;
  font-size: clamp(1.26rem, 1.95vw, 1.66rem);
  line-height: 1.12;
}

.about-cta-band p {
  max-width: 27rem;
}

.about-cta-band .button-row {
  margin-top: 0.02rem;
}

.about-cta-band .button {
  min-height: 2.95rem;
}

.page-hero--quality {
  padding-top: 3.3rem;
  padding-bottom: 2.7rem;
}

.page-hero--quality .section-heading {
  max-width: 45rem;
  margin-bottom: 0;
}

.page-hero--quality .section-heading h1 {
  max-width: 14ch;
  font-size: clamp(2.08rem, 3.55vw, 3.24rem);
  line-height: 1.07;
}

.page-hero--quality .section-heading p {
  max-width: 43rem;
  margin-top: 0.8rem;
}

.page-hero--quality .eyebrow {
  margin-bottom: 0.76rem;
}

.page-hero--quality .page-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.page-hero--quality .page-hero-copy {
  max-width: 44rem;
}

.hero-panel--photo.quality-hero-visual {
  width: min(100%, 32.5rem);
  max-width: 32.5rem;
  justify-self: end;
  align-self: center;
  display: block;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(34, 45, 32, 0.14);
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.hero-panel--photo.quality-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  object-position: center center;
}

.quality-card-section {
  padding-top: 3.35rem;
  padding-bottom: 3.1rem;
}

.quality-card-heading {
  max-width: 36rem;
  margin-bottom: 1.1rem;
}

.quality-card-heading h2 {
  max-width: 17ch;
  font-size: clamp(1.72rem, 2.55vw, 2.24rem);
  line-height: 1.1;
}

.quality-card-grid {
  max-width: 64rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.quality-detail-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.38rem 1.4rem 1.42rem;
}

.quality-detail-card h3 {
  margin-bottom: 0;
}

.quality-detail-card p {
  margin-top: 0;
}

.quality-flow-section {
  padding-top: 3.15rem;
  padding-bottom: 3rem;
}

.quality-flow-heading {
  max-width: 28rem;
  margin-bottom: 1rem;
}

.quality-flow-heading h2 {
  max-width: 11ch;
  font-size: clamp(1.58rem, 2.25vw, 2.04rem);
}

.quality-flow-grid {
  max-width: 62rem;
  margin-inline: auto;
  gap: 1rem;
}

.quality-flow-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.32rem 1.35rem 1.38rem;
}

.quality-flow-card h3 {
  margin-bottom: 0;
}

.quality-flow-card p {
  margin-top: 0;
}

.quality-process-section {
  padding-top: 3.45rem;
  padding-bottom: 3.15rem;
}

.quality-process-heading {
  max-width: 35rem;
  margin-bottom: 1.15rem;
}

.quality-process-heading h2 {
  max-width: 13ch;
  font-size: clamp(1.72rem, 2.65vw, 2.28rem);
  line-height: 1.1;
}

.quality-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 64rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.quality-process-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.38rem 1.4rem 1.42rem;
}

.quality-process-card h3 {
  margin-bottom: 0;
}

.quality-process-card p {
  margin-top: 0;
}

.quality-protection-section {
  padding-top: 3.2rem;
  padding-bottom: 2.95rem;
}

.quality-protection-heading {
  max-width: 28rem;
  margin-bottom: 1rem;
}

.quality-protection-heading h2 {
  max-width: 12ch;
  font-size: clamp(1.58rem, 2.25vw, 2.06rem);
}

.quality-protection-grid {
  max-width: 58rem;
  margin-inline: auto;
  gap: 1.05rem;
  align-items: stretch;
}

.quality-protection-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  padding: 1.45rem 1.45rem 1.5rem;
}

.quality-protection-card h3 {
  margin-bottom: 0.95rem;
}

.quality-protection-card .list-clean {
  gap: 0.76rem;
}

.quality-protection-card .list-clean li {
  line-height: 1.58;
}

.quality-cta-section {
  padding-top: 1.9rem;
  padding-bottom: 2.8rem;
}

.quality-cta-band {
  max-width: 42rem;
  margin-inline: auto;
  padding: 1.38rem 1.45rem;
  gap: 0.76rem;
}

.quality-cta-band h2 {
  max-width: 17ch;
  font-size: clamp(1.36rem, 2.08vw, 1.9rem);
}

.quality-cta-band p {
  max-width: 31rem;
}

.quality-cta-band .button-row {
  margin-top: 0.02rem;
}

.page-hero--logistics {
  padding-top: 3.3rem;
  padding-bottom: 2.7rem;
}

.page-hero--logistics .section-heading {
  max-width: 46rem;
  margin-bottom: 0;
}

.page-hero--logistics .section-heading h1 {
  max-width: 13ch;
  font-size: clamp(2.08rem, 3.5vw, 3.22rem);
  line-height: 1.07;
}

.page-hero--logistics .section-heading p {
  max-width: 44rem;
  margin-top: 0.8rem;
}

.page-hero--logistics .eyebrow {
  margin-bottom: 0.76rem;
}

.logistics-process-section {
  padding-top: 3.45rem;
  padding-bottom: 3.15rem;
}

.logistics-process-heading {
  max-width: 36rem;
  margin-bottom: 1.15rem;
}

.logistics-process-heading h2 {
  max-width: 14ch;
  font-size: clamp(1.7rem, 2.55vw, 2.24rem);
  line-height: 1.1;
}

.logistics-process-grid {
  max-width: 70rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.logistics-process-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.36rem 1.38rem 1.4rem;
}

.logistics-process-card h3 {
  margin-bottom: 0;
}

.logistics-process-card p {
  margin-top: 0;
}

.logistics-support-section {
  padding-top: 3.2rem;
  padding-bottom: 2.95rem;
}

.logistics-support-heading {
  max-width: 28rem;
  margin-bottom: 1rem;
}

.logistics-support-heading h2 {
  max-width: 12ch;
  font-size: clamp(1.58rem, 2.25vw, 2.06rem);
}

.logistics-support-grid {
  max-width: 58rem;
  margin-inline: auto;
  gap: 1.05rem;
  align-items: stretch;
}

.logistics-support-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  padding: 1.45rem 1.45rem 1.5rem;
}

.logistics-support-card h3 {
  margin-bottom: 0.95rem;
}

.logistics-support-card .list-clean {
  gap: 0.76rem;
}

.logistics-support-card .list-clean li {
  line-height: 1.58;
}

.logistics-cta-section {
  padding-top: 1.9rem;
  padding-bottom: 2.8rem;
}

.logistics-cta-band {
  max-width: 42rem;
  margin-inline: auto;
  padding: 1.38rem 1.45rem;
  gap: 0.76rem;
}

.logistics-cta-band h2 {
  max-width: 17ch;
  font-size: clamp(1.36rem, 2.08vw, 1.9rem);
}

.logistics-cta-band p {
  max-width: 31rem;
}

.logistics-cta-band .button-row {
  margin-top: 0.02rem;
}

.page-hero--why {
  padding-top: 3.3rem;
  padding-bottom: 2.65rem;
}

.page-hero--why .section-heading {
  max-width: 44rem;
  margin-bottom: 0;
}

.page-hero--why .section-heading h1 {
  max-width: 12ch;
  font-size: clamp(2.04rem, 3.45vw, 3.18rem);
  line-height: 1.06;
}

.page-hero--why .section-heading p {
  max-width: 43rem;
  margin-top: 0.78rem;
}

.page-hero--why .eyebrow {
  margin-bottom: 0.76rem;
}

.why-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.82fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 3rem);
}

.why-hero-layout__content {
  min-width: 0;
}

.why-hero-proof.review-photo-strip {
  width: min(100%, 480px);
  max-width: 480px;
  margin: 0;
  justify-self: end;
  align-self: start;
  grid-template-columns: 1fr;
  row-gap: 24px;
}

.why-hero-proof.review-photo-strip .review-photo-strip__item {
  width: 100%;
  height: 180px;
  aspect-ratio: auto;
  margin: 0;
  border: none;
  border-radius: 24px;
  box-shadow: none;
  background: none;
  overflow: hidden;
}

.why-hero-proof.review-photo-strip .review-photo-strip__item:first-child {
  height: 220px;
}

.why-hero-proof.review-photo-strip .review-photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
  display: block;
}

.services-support-pages {
  padding-top: 2rem;
  padding-bottom: 2.55rem;
}

.why-core-section {
  padding-top: 3.45rem;
  padding-bottom: 3.15rem;
}

.why-core-section .section-heading {
  max-width: 35rem;
  margin-bottom: 1.15rem;
}

.why-core-section .section-heading h2 {
  max-width: 13ch;
  font-size: clamp(1.72rem, 2.7vw, 2.3rem);
  line-height: 1.1;
}

.why-core-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 64rem;
  margin-inline: auto;
  gap: 1rem;
  align-items: stretch;
}

.why-core-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.38rem 1.4rem 1.42rem;
}

.why-core-card h3 {
  margin-bottom: 0;
}

.why-core-card p {
  margin-top: 0;
}

.why-value-section {
  padding-top: 3.3rem;
  padding-bottom: 2.95rem;
}

.why-value-heading {
  max-width: 38rem;
  margin-bottom: 1rem;
}

.why-value-heading h2 {
  max-width: 14ch;
  font-size: clamp(1.6rem, 2.3vw, 2.12rem);
}

.why-value-grid {
  max-width: 58rem;
  margin-inline: auto;
  gap: 1.05rem;
  align-items: stretch;
}

.why-value-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  padding: 1.45rem 1.45rem 1.5rem;
}

.why-value-card h3 {
  margin-bottom: 0.95rem;
}

.why-value-card .list-clean li {
  line-height: 1.58;
}

.why-value-card .list-clean {
  gap: 0.76rem;
}

.why-cta-section {
  padding-top: 1.9rem;
  padding-bottom: 2.8rem;
}

.why-cta-band {
  max-width: 43rem;
  margin-inline: auto;
  padding: 1.45rem 1.5rem;
  gap: 0.78rem;
}

.why-cta-band h2 {
  max-width: 17ch;
  font-size: clamp(1.4rem, 2.15vw, 1.92rem);
}

.why-cta-band p {
  max-width: 33rem;
}

.why-cta-band .button-row {
  margin-top: 0.05rem;
}

.related-grid--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 40rem;
  gap: 0.95rem;
  margin-inline: auto;
  align-items: stretch;
}

.services-support-tile {
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 242, 236, 0.94));
  border: 1px solid rgba(21, 71, 24, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 32px rgba(16, 55, 19, 0.08);
  color: var(--ink-900);
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.services-support-tile:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(252, 251, 248, 0.96));
  border-color: rgba(21, 71, 24, 0.24);
  box-shadow: 0 20px 38px rgba(16, 55, 19, 0.1);
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.95rem;
  border: var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--green-800);
  font-weight: 700;
}

.hero-tagline img {
  width: 1.7rem;
  height: 1.7rem;
}

.page-hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.page-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  background: rgba(21, 71, 24, 0.07);
  color: var(--green-800);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-panel,
.card,
.value-card,
.process-card,
.trust-card,
.category-teaser,
.scope-card,
.reason-card,
.contact-panel,
.cta-band,
.info-list,
.form-shell {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.hero-panel {
  padding: 1.05rem;
  overflow: hidden;
}

.hero-panel img,
.placeholder-panel img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
}

.hero-panel--photo {
  display: flex;
  min-height: clamp(18rem, 34vw, 24rem);
  padding: 0.85rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(226, 220, 208, 0.5));
}

.hero-panel--photo img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-panel--collage {
  display: flex;
  min-height: clamp(18rem, 34vw, 24rem);
  padding: 0.85rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(226, 220, 208, 0.5));
}

.hero-panel--home-products {
  min-height: clamp(18rem, 34vw, 24.5rem);
}

.hero-panel--home-manual {
  min-height: clamp(19.5rem, 33.5vw, 24.25rem);
  padding: 0.9rem;
}

.hero-panel--home-manual-single {
  min-height: clamp(19.25rem, 33vw, 24rem);
}

.hero-panel--home-manual-single img {
  object-position: center 53%;
}

.hero-photo-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
  min-height: inherit;
}

.hero-photo-collage__item {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  background: rgba(255, 255, 255, 0.36);
  min-height: 0;
}

.hero-photo-collage__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo-collage--home {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-photo-collage--home .hero-photo-collage__item {
  min-height: 0;
}

.hero-photo-collage__item--home-primary {
  grid-row: 1 / 3;
}

.hero-photo-collage__item--home-primary img {
  object-position: center;
}

.hero-photo-collage__item--home-secondary img {
  object-position: center 48%;
}

.hero-photo-collage__item--home-tertiary img {
  object-position: center 54%;
}

.hero-photo-collage--home-manual {
  grid-template-columns: minmax(0, 63fr) minmax(0, 24fr) minmax(0, 13fr);
  grid-template-rows: 1.18fr 0.96fr;
  gap: 0.875rem;
}

.hero-photo-collage--home-manual .hero-photo-collage__item {
  min-height: 0;
  border-radius: 16px;
}

.hero-photo-collage__item--home-manual-primary {
  grid-column: 1;
  grid-row: 1 / 3;
}

.hero-photo-collage__item--home-manual-secondary {
  grid-column: 2 / 4;
  grid-row: 1;
}

.hero-photo-collage__item--home-manual-tertiary {
  grid-column: 2;
  grid-row: 2;
}

.hero-photo-collage__item--home-manual-quaternary {
  grid-column: 3;
  grid-row: 2;
}

.hero-photo-collage__item--home-manual-primary img {
  object-position: center 50%;
}

.hero-photo-collage__item--home-manual-secondary img {
  object-position: center 50%;
}

.hero-photo-collage__item--home-manual-tertiary img {
  object-position: center 46%;
}

.hero-photo-collage__item--home-manual-quaternary img {
  object-position: center 52%;
}

.submark-surface::after {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 18rem;
  height: 18rem;
  background: url("../img/brand/submark-web.png") no-repeat center / contain;
  opacity: 0.07;
  pointer-events: none;
}

.card-grid,
.value-grid,
.trust-grid,
.scope-grid,
.reason-grid,
.mini-grid,
.related-grid {
  display: grid;
  gap: 1.1rem;
}

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

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

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

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

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

.card,
.value-card,
.process-card,
.trust-card,
.scope-card,
.reason-card,
.category-teaser,
.related-card {
  padding: 1.32rem;
}

.card h3,
.value-card h3,
.process-card h3,
.trust-card h3,
.scope-card h3,
.reason-card h3,
.category-teaser h3,
.product-card h3,
.related-card h3,
.contact-panel h2,
.form-shell h2,
.hero-metric h3 {
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: 1.16rem;
  line-height: 1.2;
  margin-bottom: 0.68rem;
  color: var(--ink-900);
}

.card p,
.value-card p,
.process-card p,
.trust-card p,
.scope-card p,
.reason-card p,
.category-teaser p,
.product-card p,
.contact-panel p,
.related-card p,
.info-list li,
.form-intro {
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.62;
}

.duo-grid,
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.text-stack,
.flow-stack {
  display: grid;
  gap: 1rem;
}

.highlight-text {
  font-size: 1.05rem;
  color: var(--ink-700);
}

.list-clean {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.list-clean li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-700);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold-500);
}

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

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: rgba(21, 71, 24, 0.08);
  color: var(--green-800);
  font-weight: 800;
}

.category-teaser {
  padding: 1.1rem 1.08rem;
  min-height: 7.8rem;
}

.category-teaser span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: var(--green-800);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
}

.trust-card {
  padding: 1.28rem;
}

.icon-disc {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21, 71, 24, 0.1), rgba(231, 168, 24, 0.18));
  color: var(--green-900);
  font-size: 1rem;
  font-weight: 800;
}

.cta-band {
  padding: 1.65rem;
  display: grid;
  gap: 0.9rem;
  background:
    linear-gradient(120deg, rgba(16, 55, 19, 0.98), rgba(21, 71, 24, 0.94)),
    url("../img/brand/submark-web.png") no-repeat right -4rem bottom -4rem / 18rem;
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band .button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.product-card-body {
  padding: 1.3rem;
}

.product-media {
  position: relative;
  min-height: 12.8rem;
  aspect-ratio: 5 / 4;
  border-bottom: 1px solid rgba(16, 55, 19, 0.08);
  overflow: hidden;
}

.product-media::before,
.product-media::after {
  content: "";
  position: absolute;
  inset: 18% 20%;
  border-radius: var(--radius-md);
  opacity: 0.58;
}

.product-media::after {
  inset: auto 1rem 1rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  filter: blur(4px);
}

.product-media__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 55, 19, 0.08);
  color: var(--green-800);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-media--photo {
  background: var(--surface-100);
  isolation: isolate;
}

.product-media--photo::before,
.product-media--photo::after {
  display: none;
}

.product-media__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-media--photo .product-media__label {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(16, 55, 19, 0.12);
}

.product-media--collage {
  padding: 0.48rem;
}

.product-media__collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0.45rem;
  padding: 0.48rem;
}

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

.product-media__collage--feature-support {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.product-media--collage .product-media__image {
  position: relative;
  inset: auto;
  border-radius: calc(var(--radius-md) - 2px);
  box-shadow: 0 8px 18px rgba(16, 55, 19, 0.08);
}

.product-media__image--coffee-primary {
  object-position: center 50%;
}

.product-media__image--dates-primary {
  object-position: center 50%;
}

.product-media__image--spices-primary {
  object-position: center 50%;
}

.product-media__image--dates-support {
  object-position: center 52%;
}

.product-media__image--frozen-primary {
  object-position: center 46%;
}

.product-media__image--frozen-support {
  object-position: center 54%;
}

.product-media__image--nuts-primary {
  object-position: center 48%;
}

.product-media__image--seafood-primary {
  object-position: center 52%;
}

.product-media__image--produce-primary {
  object-position: center 54%;
}

.product-media__image--produce-support {
  object-position: center 50%;
}

.product-media__image--feed-primary {
  object-position: 38% 50%;
}

.product-media__image--feed-support {
  object-position: center 50%;
}

.product-media--coffee {
  background:
    radial-gradient(circle at 26% 38%, rgba(21, 71, 24, 0.18) 0 8%, transparent 8.6%),
    radial-gradient(circle at 48% 46%, rgba(21, 71, 24, 0.2) 0 7%, transparent 7.7%),
    radial-gradient(circle at 62% 30%, rgba(231, 168, 24, 0.2) 0 6%, transparent 6.7%),
    linear-gradient(135deg, rgba(226, 220, 208, 0.6), rgba(255, 255, 255, 0.2));
}

.product-media--coffee::before {
  border: 2px solid rgba(21, 71, 24, 0.22);
  transform: rotate(-10deg);
}

.product-media--dates {
  background:
    linear-gradient(135deg, rgba(231, 168, 24, 0.22), transparent 55%),
    repeating-linear-gradient(115deg, rgba(21, 71, 24, 0.12), rgba(21, 71, 24, 0.12) 12px, transparent 12px, transparent 24px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(226, 220, 208, 0.55));
}

.product-media--dates::before {
  border: 2px solid rgba(223, 173, 23, 0.3);
}

.product-media--spices {
  background:
    radial-gradient(circle at 25% 72%, rgba(223, 173, 23, 0.2), transparent 25%),
    linear-gradient(45deg, rgba(21, 71, 24, 0.12), transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(226, 220, 208, 0.55));
}

.product-media--spices::before {
  border-top: 2px solid rgba(21, 71, 24, 0.22);
  border-bottom: 2px solid rgba(223, 173, 23, 0.26);
}

.product-media--nuts {
  background:
    radial-gradient(circle at 32% 36%, rgba(21, 71, 24, 0.15) 0 10%, transparent 10.5%),
    radial-gradient(circle at 60% 56%, rgba(231, 168, 24, 0.2) 0 11%, transparent 11.5%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(226, 220, 208, 0.6));
}

.product-media--nuts::before {
  border: 2px dashed rgba(21, 71, 24, 0.2);
}

.product-media--frozen {
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.55), transparent 18%),
    linear-gradient(135deg, rgba(89, 145, 155, 0.18), rgba(21, 71, 24, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(226, 220, 208, 0.45));
}

.product-media--frozen::before {
  border: 2px solid rgba(89, 145, 155, 0.24);
}

.product-media--seafood {
  background:
    radial-gradient(circle at 18% 28%, rgba(231, 168, 24, 0.22), transparent 15%),
    linear-gradient(180deg, rgba(21, 71, 24, 0.18), transparent 70%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(226, 220, 208, 0.52));
}

.product-media--seafood::before {
  border-top: 2px solid rgba(21, 71, 24, 0.22);
  border-bottom: 2px solid rgba(21, 71, 24, 0.12);
  transform: skewX(-12deg);
}

.product-media--produce {
  background:
    radial-gradient(circle at 26% 34%, rgba(21, 71, 24, 0.18), transparent 16%),
    radial-gradient(circle at 72% 62%, rgba(231, 168, 24, 0.18), transparent 14%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(226, 220, 208, 0.55));
}

.product-media--produce::before {
  border: 2px solid rgba(21, 71, 24, 0.18);
  border-radius: 60% 40% 58% 42%;
}

.product-media--feed {
  background:
    repeating-linear-gradient(90deg, rgba(21, 71, 24, 0.13), rgba(21, 71, 24, 0.13) 10px, transparent 10px, transparent 20px),
    linear-gradient(135deg, rgba(231, 168, 24, 0.12), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(226, 220, 208, 0.62));
}

.product-media--feed::before {
  border: 2px solid rgba(223, 173, 23, 0.24);
}

.inline-link {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
}

.home-execution-focus .section-heading {
  margin-bottom: 1.55rem;
}

.home-execution-focus .section-heading h2 {
  max-width: 16ch;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.home-execution-focus .trust-strip {
  gap: 0.9rem;
}

.home-execution-focus .trust-card {
  padding: 1.3rem;
}

.home-execution-focus .trust-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.18rem;
}

.home-execution-focus .icon-disc {
  margin-bottom: 0.75rem;
}

.home-execution-focus .inline-link {
  margin-top: 0.8rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(21, 71, 24, 0.08);
  color: var(--green-800);
  font-weight: 700;
}

.info-list {
  padding: 1.35rem;
}

.info-list ul {
  list-style: none;
  display: grid;
  gap: 0.82rem;
}

.info-list li strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink-900);
}

.related-card {
  background: rgba(255, 255, 255, 0.88);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.32rem;
}

.form-shell,
.contact-panel {
  padding: 1.65rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.4rem;
}

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

.field {
  display: grid;
  gap: 0.44rem;
}

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

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

.field label {
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  border-radius: 14px;
  border: 1px solid rgba(16, 55, 19, 0.14);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.88rem 1rem;
  color: var(--ink-900);
}

.field textarea {
  min-height: 9.75rem;
  resize: vertical;
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: rgba(152, 44, 27, 0.55);
  background: rgba(152, 44, 27, 0.035);
}

.field-error {
  margin: 0;
  color: #982c1b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 1rem;
}

.form-note,
.form-status,
.muted {
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.58;
}

.contact-panel h3 {
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  line-height: 1.2;
  color: var(--ink-900);
}

.contact-direct-list,
.footer-contact-list {
  display: grid;
  gap: 0.8rem;
}

.contact-detail {
  display: grid;
  gap: 0.28rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(16, 55, 19, 0.08);
}

.contact-detail:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-label {
  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-map-link {
  color: var(--green-800);
  font-weight: 700;
}

.contact-detail p {
  color: var(--ink-700);
}

.contact-map {
  display: grid;
  gap: 0.7rem;
}

.contact-map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: calc(var(--radius-lg) - 4px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-panel .flow-stack {
  gap: 1.05rem;
}

.contact-panel .social-links {
  padding-top: 0.05rem;
}

.home-proof-section {
  background: linear-gradient(180deg, rgba(244, 242, 236, 0.82), rgba(255, 255, 255, 0.78));
  padding-top: 3rem;
  padding-bottom: 2.8rem;
}

.home-proof-section .section-heading,
.about-proof-section .section-heading {
  max-width: 42rem;
  margin-bottom: 1.05rem;
}

.home-proof-strip,
.why-proof-strip {
  max-width: 70rem;
  margin-inline: auto;
}

.home-proof-card,
.about-proof-card,
.why-proof-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.home-proof-card h3,
.about-proof-card h3,
.why-proof-card h3 {
  margin-bottom: 0;
}

.about-proof-section {
  padding-top: 2.95rem;
  padding-bottom: 3.05rem;
}

.about-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 64rem;
  margin-inline: auto;
}

.services-model-list,
.product-facts,
.quality-reference-list,
.logistics-reference-list,
.contact-next-steps-list {
  padding: 1rem 1.05rem;
}

.services-model-list ul,
.product-facts ul,
.quality-reference-list ul,
.logistics-reference-list ul,
.contact-next-steps-list ul {
  gap: 0.72rem;
}

.products-grid-heading {
  max-width: 44rem;
  margin-bottom: 1.2rem;
}

.product-grid {
  align-items: stretch;
}

.product-card-body {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.product-card-body h3,
.product-card-body p {
  margin: 0;
}

.product-card .inline-link {
  margin-top: auto;
}

.quality-reference-section,
.logistics-reference-section,
.why-proof-section {
  padding-top: 0;
  padding-bottom: 3rem;
}

.quality-reference-grid,
.logistics-reference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: center;
}

.quality-reference-copy,
.logistics-reference-copy {
  display: grid;
  gap: 1rem;
}

.quality-reference-heading,
.logistics-reference-heading {
  max-width: 35rem;
  margin-bottom: 0;
}

.quality-reference-heading h2,
.logistics-reference-heading h2 {
  max-width: 14ch;
  font-size: clamp(1.58rem, 2.3vw, 2.08rem);
}

.quality-reference-visual,
.logistics-reference-visual {
  min-height: 100%;
}

.shortlisted-supporting-banner {
  margin: 0 auto 1.35rem;
  max-width: 58rem;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(226, 220, 208, 0.46));
}

.shortlisted-supporting-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.logistics-shortlisted-banner img {
  object-position: center 34%;
}

.review-support-strip {
  margin: 1.35rem auto 0;
  max-width: 58rem;
  aspect-ratio: 16 / 6;
  overflow: hidden;
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(226, 220, 208, 0.46));
}

.review-support-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-support-strip,
.quality-proof-strip,
.why-proof-strip {
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}

.about-support-strip img {
  object-position: center 42%;
}

.review-photo-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.review-photo-split__item {
  overflow: hidden;
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(226, 220, 208, 0.46));
  aspect-ratio: 16 / 9;
}

.review-photo-split__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.review-photo-split--logistics {
  grid-template-columns: minmax(0, 1.34fr) minmax(0, 0.66fr);
  align-items: stretch;
}

.review-photo-split--logistics .review-photo-split__item:first-child img {
  object-position: center 50%;
}

.review-photo-split--logistics .review-photo-split__item:last-child img {
  object-position: 62% center;
}

.review-photo-strip {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.review-photo-strip--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-photo-strip__item {
  overflow: hidden;
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(226, 220, 208, 0.46));
  aspect-ratio: 16 / 7;
}

.review-photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-hero-proof.review-photo-strip .review-photo-strip__item:nth-child(1) img {
  object-position: center center;
}

.why-hero-proof.review-photo-strip .review-photo-strip__item:nth-child(2) img {
  object-position: center center;
}

.quality-reference-visual img,
.logistics-reference-visual img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.form-section {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(16, 55, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.form-section + .form-section {
  margin-top: 1rem;
}

.form-section legend {
  padding: 0 0.45rem;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-next-steps h3 {
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-link {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(16, 55, 19, 0.12);
  color: var(--green-800);
  background: rgba(21, 71, 24, 0.05);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(21, 71, 24, 0.1);
  border-color: rgba(21, 71, 24, 0.18);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.social-links--footer .social-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.social-links--footer .social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.form-status:not(:empty) {
  margin-top: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(16, 55, 19, 0.12);
  background: rgba(21, 71, 24, 0.05);
}

.form-status--success:not(:empty) {
  border-color: rgba(21, 71, 24, 0.2);
  background: rgba(21, 71, 24, 0.08);
  color: var(--green-deep);
}

.form-status--error:not(:empty) {
  border-color: rgba(152, 44, 27, 0.26);
  background: rgba(152, 44, 27, 0.08);
  color: #982c1b;
}

.site-footer {
  padding: 2.95rem 0 0.95rem;
  background:
    linear-gradient(135deg, rgba(16, 55, 19, 1), rgba(21, 71, 24, 0.96)),
    url("../img/brand/submark-web.png") no-repeat right -4rem top -3rem / 15rem;
  color: var(--white);
}

.site-footer > .container {
  width: min(972px, calc(100% - 2.25rem));
}

.footer-grid {
  display: grid;
  grid-template-columns: 420px 190px 270px;
  justify-content: center;
  align-items: start;
  gap: 0.9rem 1.35rem;
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-self: start;
  width: 420px;
  padding-top: 0;
}

.footer-brand img {
  display: block;
  width: 420px;
  max-width: 100%;
  margin-bottom: 0;
}

.footer-links a,
.footer-inquiry p,
.footer-base p {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  display: grid;
  gap: 0.48rem;
}

.footer-links--nav {
  align-content: start;
  max-width: 190px;
}

.footer-links h2,
.footer-inquiry h2 {
  font-family: "Manrope", "Aptos", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.34rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-inquiry {
  display: grid;
  gap: 0.62rem;
  align-content: start;
  max-width: 270px;
  justify-self: start;
}

.footer-contact-item {
  display: grid;
  gap: 0.12rem;
}

.footer-contact-email,
.footer-contact-value {
  color: var(--white);
  font-weight: 700;
  width: max-content;
  max-width: 100%;
}

.footer-contact-value {
  white-space: nowrap;
}

.footer-contact-label,
.footer-contact-location {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.footer-contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-base a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-top: 1.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 0.9rem;
}

.button:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.social-link:focus-visible,
.footer-links a:focus-visible,
.inline-link:focus-visible,
.contact-map-link:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(223, 173, 23, 0.24);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: rgba(21, 71, 24, 0.26);
  background: var(--white);
}

@media (max-width: 1360px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .button--nav {
    display: none;
  }

  .brand img {
    width: clamp(166px, 19vw, 198px);
  }

  .nav-link {
    padding: 0.46rem 0.64rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .brand img {
    width: min(190px, 48vw);
  }

  body.is-scrolled .brand img {
    width: min(176px, 45vw);
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.32rem;
    margin-bottom: 0.1rem;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.94);
    border: var(--border-soft);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link,
  body.is-scrolled .nav-link {
    padding: 0.74rem 0.92rem;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  .page-hero-grid,
  .contact-layout,
  .duo-grid,
  .split-grid,
  .footer-grid,
  .scope-grid,
  .reason-grid,
  .trust-strip,
  .process-grid,
  .mini-grid,
  .value-grid,
  .related-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .page-hero-grid,
  .card-grid,
  .mini-grid,
  .scope-grid,
  .reason-grid,
  .trust-grid,
  .trust-strip,
  .process-grid,
  .value-grid,
  .related-grid,
  .product-grid,
  .duo-grid,
  .split-grid,
  .quality-reference-grid,
  .logistics-reference-grid,
  .contact-layout,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.65rem 0;
  }

  .page-hero {
    padding: 3.4rem 0 2.8rem;
  }

  .page-hero--home {
    padding-top: 3.7rem;
  }

  .page-hero--products {
    padding-bottom: 2.65rem;
  }

  .page-hero--about {
    padding-top: 3rem;
    padding-bottom: 2.45rem;
  }

  .page-hero--quality {
    padding-top: 3rem;
    padding-bottom: 2.45rem;
  }

  .hero-panel--photo.services-hero-visual {
    max-width: min(100%, 31.25rem);
    justify-self: start;
  }

  .page-hero--quality .page-hero-grid {
    align-items: start;
  }

  .hero-panel--photo.quality-hero-visual {
    max-width: min(100%, 32.5rem);
    justify-self: start;
  }

  .page-hero--logistics {
    padding-top: 3rem;
    padding-bottom: 2.45rem;
  }

  .about-cta-section {
    padding-top: 1.55rem;
    padding-bottom: 2.3rem;
  }

  .about-cta-band {
    max-width: 34rem;
    padding: 1.08rem 1.12rem;
  }

  .page-hero--why {
    padding-top: 3rem;
    padding-bottom: 2.45rem;
  }

  .why-hero-layout {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .why-hero-proof.review-photo-strip {
    width: min(100%, 480px);
    max-width: 480px;
    justify-self: start;
  }

  .hero-panel--home-manual {
    min-height: clamp(18.75rem, 50vw, 22.5rem);
    padding: 0.82rem;
  }

  .hero-panel--home-manual-single {
    min-height: clamp(18rem, 48vw, 22rem);
    padding: 0.82rem;
  }

  .hero-panel--home-manual-single img {
    object-position: center 52%;
  }

  .hero-photo-collage--home-manual {
    grid-template-columns: minmax(0, 63fr) minmax(0, 24fr) minmax(0, 13fr);
    grid-template-rows: 1.14fr 0.94fr;
    gap: 0.75rem;
  }

  .hero-photo-collage--home-manual .hero-photo-collage__item {
    min-height: 0;
  }

  .quality-process-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .quality-card-grid,
  .quality-flow-grid {
    max-width: none;
  }

  .quality-protection-grid {
    max-width: none;
  }

  .logistics-process-grid {
    max-width: none;
  }

  .logistics-support-grid {
    max-width: none;
  }

  .shortlisted-supporting-banner {
    max-width: none;
    aspect-ratio: 5 / 4;
  }

  .review-support-strip,
  .review-photo-split__item {
    aspect-ratio: 5 / 4;
  }

  .review-photo-split {
    grid-template-columns: 1fr;
  }

  .review-photo-strip--three {
    grid-template-columns: 1fr;
  }

  .review-photo-strip__item {
    aspect-ratio: 5 / 4;
  }

  .why-core-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .why-value-grid {
    max-width: none;
  }

  .about-proof-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .quality-reference-visual,
  .logistics-reference-visual {
    order: -1;
  }

  .site-footer {
    padding-top: 2.8rem;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 5.4rem;
  }

  .container {
    width: min(1140px, calc(100% - 1.25rem));
  }

  .site-header .container {
    width: min(1260px, calc(100% - 1.25rem));
  }

  .header-inner {
    gap: 0.6rem;
  }

  .brand img,
  body.is-scrolled .brand img {
    width: min(172px, 55vw);
  }

  .menu-toggle {
    padding: 0.6rem 0.8rem;
  }

  .page-hero-actions,
  .button-row {
    gap: 0.6rem;
  }

  .hero-panel--home-manual {
    min-height: clamp(19.5rem, 84vw, 23rem);
    padding: 0.72rem;
  }

  .hero-panel--home-manual-single {
    min-height: clamp(18.5rem, 84vw, 22rem);
    padding: 0.72rem;
  }

  .hero-panel--home-manual-single img {
    object-position: center 50%;
  }

  .hero-photo-collage--home-manual {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
    grid-template-rows: 1.08fr 0.76fr 0.46fr;
    gap: 0.56rem;
  }

  .hero-photo-collage__item--home-manual-primary {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .hero-photo-collage__item--home-manual-secondary {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .hero-photo-collage__item--home-manual-tertiary {
    grid-column: 1;
    grid-row: 3;
  }

  .hero-photo-collage__item--home-manual-quaternary {
    grid-column: 2;
    grid-row: 3;
  }

  .hero-photo-collage--home-manual .hero-photo-collage__item {
    min-height: 0;
  }

  .hero-brand-strip {
    gap: 0.7rem;
    margin-bottom: 1.15rem;
  }

  .hero-brand-mark {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 16px;
  }

  .hero-brand-mark img {
    width: 1.7rem;
    height: 1.7rem;
  }

  .hero-brand-text {
    padding-left: 0.75rem;
  }

  .form-meta {
    align-items: stretch;
  }

  .form-meta .button {
    width: 100%;
  }

  .contact-actions .button {
    width: 100%;
  }

  .form-shell,
  .contact-panel {
    padding: 1.35rem;
  }

  .form-section {
    padding: 0.88rem;
  }

  .site-footer {
    background:
      linear-gradient(135deg, rgba(16, 55, 19, 1), rgba(21, 71, 24, 0.96)),
      url("../img/brand/submark-web.png") no-repeat right -5rem top -3rem / 12rem;
  }
}

@media (min-width: 1181px) and (max-width: 1360px) {
  .site-footer > .container {
    width: min(924px, calc(100% - 2rem));
  }

  .footer-grid {
    grid-template-columns: 380px 180px 250px;
    gap: 0.85rem 1.2rem;
  }

  .footer-brand {
    width: 380px;
  }

  .footer-brand img {
    width: 380px;
  }

  .footer-inquiry {
    grid-column: auto;
    max-width: 250px;
  }
}

@media (max-width: 1180px) {
  .site-footer > .container {
    width: min(972px, calc(100% - 2rem));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0.95rem 1.2rem;
  }

  .footer-brand {
    width: min(100%, 320px);
  }

  .footer-brand img {
    width: 320px;
  }

  .footer-links--nav {
    max-width: none;
  }

  .footer-inquiry {
    grid-column: 1 / -1;
    max-width: 28rem;
  }
}

@media (max-width: 820px) {
  .site-footer > .container {
    width: min(972px, calc(100% - 1.5rem));
  }

  .footer-links--nav,
  .footer-inquiry {
    max-width: none;
  }

  .footer-brand {
    width: auto;
  }

  .footer-brand img {
    width: 320px;
  }

  .footer-inquiry {
    grid-column: auto;
  }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-footer > .container {
    width: min(972px, calc(100% - 1.25rem));
  }

  .site-footer {
    padding: 2.6rem 0 0.9rem;
  }

  .footer-brand img {
    width: 260px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
  }
}
