:root {
  --brand-green: #3f8f47;
  --brand-green-dark: #1f6530;
  --ink: #202823;
  --muted: #5e6a62;
  --line: #dde5dd;
  --white: #ffffff;
  --section-gray: #f7f8f6;
  --section-green: #f2f6ec;
  --soft-green: #e3efdf;
  --shadow: 0 20px 50px rgba(24, 45, 32, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr minmax(220px, 340px) auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(221, 229, 221, 0.9);
  backdrop-filter: blur(18px);
}

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

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-item {
  position: relative;
}

.main-nav a,
.nav-cta {
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--brand-green-dark);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  width: 310px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(24, 45, 32, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

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

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 750;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--section-green);
  color: var(--brand-green-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--brand-green);
  border-radius: 6px;
  color: var(--brand-green-dark);
  font-weight: 750;
}

.nav-cta:hover {
  background: var(--section-green);
}

.site-search {
  width: 100%;
}

.site-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--section-gray);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
}

.site-search input:focus {
  outline: 3px solid var(--soft-green);
  border-color: var(--brand-green);
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(58px, 8vw, 112px) clamp(20px, 5vw, 72px) 64px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.1vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.section-heading + p,
.split-copy > p,
.contact > div > p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--brand-green);
  color: var(--white);
}

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

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-dark);
}

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

.hero-media > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 152px;
  padding: 26px clamp(20px, 4vw, 38px);
  background: var(--section-gray);
}

.trust-band strong {
  display: block;
  max-width: 260px;
  font-size: clamp(0.98rem, 1.6vw, 1.5rem);
  line-height: 1.28;
  font-weight: 760;
}

.trust-band span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 560;
  line-height: 1.4;
}

.section {
  padding: clamp(50px, 5vw, 72px) clamp(20px, 5vw, 72px);
}

#top {
  scroll-margin-top: 86px;
}

.intro {
  background: var(--white);
}

.section-heading {
  max-width: 500px;
}

.intro-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.intro .section-heading {
  max-width: 560px;
}

.intro h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.1;
}

.intro .section-content {
  max-width: 560px;
}

.intro .section-content p {
  margin-bottom: 18px;
}

.intro .section-content p:last-child {
  margin-bottom: 0;
}

.intro-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--section-gray);
  box-shadow: var(--shadow);
}

.intro-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.products-section {
  background: var(--section-green);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--brand-green);
  background: var(--brand-green);
  color: var(--white);
}

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

.product-card {
  min-height: 360px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(63, 143, 71, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(24, 45, 32, 0.06);
}

.product-card.is-hidden {
  display: none;
}

.product-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card p,
.service-list p {
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.card-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand-green-dark);
  font-weight: 850;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--section-gray);
}

.page-hero > div {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compact-page-hero {
  min-height: auto;
  padding-block: clamp(54px, 7vw, 92px);
}

.product-browser {
  padding-top: clamp(34px, 5vw, 58px);
  background: var(--white);
}

.category-carousel {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 0 8px;
  scroll-snap-type: x proximity;
}

.category-panel {
  display: none;
}

.category-panel.active {
  display: block;
}

.panel-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.panel-heading h2 {
  margin-bottom: 16px;
}

.panel-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
}

.subfilter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.filter-stack {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
}

.select-filter-stack {
  grid-template-columns: repeat(2, minmax(220px, 320px));
  align-items: end;
}

.filter-group {
  display: grid;
  gap: 8px;
}

.select-filter {
  display: grid;
  gap: 8px;
}

.select-filter select {
  width: 100%;
  min-height: 44px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.filter-label {
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.filter,
.subfilter {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter span {
  display: block;
}

.filter:hover,
.filter.active,
.subfilter:hover,
.subfilter.active {
  border-color: var(--brand-green);
  background: var(--brand-green);
  color: var(--white);
}

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

.fs-product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 470px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(63, 143, 71, 0.18);
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(24, 45, 32, 0.06);
}

.fs-product-image {
  display: block;
  background: var(--section-gray);
}

.fs-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.fs-product-body {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.fs-product-body span {
  margin-bottom: 12px;
  color: var(--brand-green-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.fs-product-body p {
  color: var(--muted);
}

.animal-product-card {
  min-height: 520px;
}

.fs-product-body .product-target {
  margin: -4px 0 12px;
  color: var(--ink);
  font-weight: 800;
}

.animal-card-specs {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
}

.animal-card-specs div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.animal-card-specs dt {
  color: var(--brand-green-dark);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.animal-card-specs dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.product-specs small {
  padding: 6px 7px;
  background: var(--section-green);
  border-radius: 6px;
  color: var(--brand-green-dark);
  font-weight: 750;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px;
  background: var(--section-gray);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: var(--section-green);
}

.detail-copy {
  max-width: 850px;
}

.detail-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.2vw, 1.22rem);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.detail-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  background: var(--white);
  border: 1px solid rgba(63, 143, 71, 0.18);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.detail-media img {
  width: min(82%, 420px);
  max-height: 320px;
  object-fit: contain;
}

.detail-section {
  padding-top: clamp(44px, 6vw, 74px);
}

.detail-flow {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  max-width: none;
}

.detail-block {
  padding-bottom: 0;
}

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

.detail-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
}

.detail-block p {
  max-width: none;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.detail-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
}

.detail-table th,
.detail-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  background: var(--section-gray);
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-table tbody tr:last-child td {
  border-bottom: 0;
}

.key-info-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 28px;
  margin: 0 0 22px;
  max-width: none;
}

.key-info-list div {
  display: grid;
  gap: 4px;
}

.key-info-list dt {
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.key-info-list dd {
  margin: 0;
  color: var(--ink);
}

.detail-specs {
  max-width: none;
}

.product-detail-hero {
  max-width: 1120px;
  padding: clamp(56px, 7vw, 92px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 62px);
}

.product-detail-hero.tinted {
  max-width: none;
  background: var(--section-green);
}

.product-detail-hero > * {
  max-width: 900px;
}

.product-detail-hero h1 {
  margin-bottom: 20px;
}

.product-detail-hero p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
}

.product-detail-section {
  padding-top: clamp(34px, 5vw, 62px);
}

.category-index {
  position: sticky;
  top: 78px;
  z-index: 10;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.category-index a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.category-index a:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-dark);
}

.product-category {
  scroll-margin-top: 150px;
  padding: clamp(72px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: var(--white);
}

.product-category.tinted {
  background: var(--section-green);
}

.category-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.category-heading > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.catalogue-item {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(63, 143, 71, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(24, 45, 32, 0.05);
}

.product-category:not(.tinted) .catalogue-item {
  background: var(--section-gray);
}

.catalogue-item p {
  color: var(--muted);
}

.catalogue-item dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.catalogue-item dl div {
  display: grid;
  gap: 2px;
}

.catalogue-item dt {
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.catalogue-item dd {
  margin: 0;
  color: var(--ink);
}

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

.compact-list a {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(63, 143, 71, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 850;
}

.compact-list a:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-dark);
}

.product-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(56px, 7vw, 84px) clamp(20px, 5vw, 72px);
  background: var(--section-gray);
}

.product-cta h2 {
  max-width: 840px;
  margin-bottom: 0;
}

.services {
  background: var(--white);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: start;
  margin-bottom: 42px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-list article {
  min-height: 260px;
  padding: 26px;
  background: var(--section-gray);
}

.news {
  background: var(--section-gray);
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.service-points span {
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--brand-green-dark);
  font-weight: 750;
}

.news .section-heading {
  max-width: 620px;
  margin-bottom: 32px;
}

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

.news-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  padding: 28px;
  background: var(--white);
}

.news-card time {
  color: var(--brand-green-dark);
  font-size: 0.84rem;
  font-weight: 820;
  letter-spacing: 0;
}

.news-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.news-card .card-link {
  align-self: end;
  margin-top: 8px;
}

.news-page {
  background: var(--white);
}

.news-list {
  display: grid;
  gap: 1px;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.news-year-heading {
  scroll-margin-top: 92px;
  padding: 28px;
  background: var(--section-green);
}

.news-year-heading .eyebrow {
  margin-bottom: 8px;
}

.news-year-heading h1,
.news-year-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.2;
}

.news-list-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 28px;
  background: var(--white);
}

.news-list-item time {
  color: var(--brand-green-dark);
  font-size: 0.9rem;
  font-weight: 820;
}

.news-list-item h2 {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.25;
}

.news-list-item p {
  margin: 0;
  color: var(--muted);
}

.news-detail-hero p:not(.eyebrow) {
  max-width: none;
  color: var(--muted);
  font-size: 1.08rem;
}

.news-detail-hero.no-image {
  grid-template-columns: minmax(0, 1fr);
}

.news-detail-hero > .news-detail-hero-copy {
  max-width: none;
}

.news-detail-hero-media {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.news-detail-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.news-detail-section {
  background: var(--white);
}

.news-detail-body {
  max-width: none;
  margin: 0;
}

.news-detail-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.news-detail-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.news-detail-body td,
.news-detail-body th {
  padding: 10px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.news-detail-body img,
.news-body-image {
  max-width: 100%;
  height: auto;
  margin: 18px auto;
}

.news-detail-body a {
  color: var(--brand-green-dark);
  font-weight: 750;
}

.news-detail-body h2 {
  margin: 34px 0 14px;
  font-size: 1.45rem;
}

.news-detail-body ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact {
  display: grid;
  gap: 28px;
  background: var(--section-green);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(63, 143, 71, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(24, 45, 32, 0.08);
}

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

.quote-form .button {
  grid-column: 4;
  grid-row: 1;
  align-self: end;
  justify-self: start;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--soft-green);
  border-color: var(--brand-green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: #243027;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
}

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

  .main-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .site-search {
    order: 4;
    grid-column: 1 / -1;
  }

  .dropdown-menu {
    left: 0;
    transform: translateY(-8px);
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    transform: translateY(0);
  }

  .hero,
  .intro,
  .intro-copy,
  .split-copy,
  .contact,
  .page-hero,
  .news-detail-hero.no-image,
  .product-detail-layout,
  .category-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .food-product-grid,
  .catalogue-grid,
  .compact-list,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-list,
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .news-list-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    gap: 16px;
  }

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

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media > img {
    height: 360px;
  }

  .product-grid,
  .food-product-grid,
  .catalogue-grid,
  .compact-list,
  .news-grid,
  .key-info-list,
  .service-list,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .category-index {
    position: static;
  }

  .select-filter-stack {
    grid-template-columns: 1fr;
  }

  .dropdown-menu {
    top: calc(100% + 8px);
    width: min(86vw, 310px);
  }

  .product-card,
  .service-list article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-contact {
    justify-items: start;
  }
}
