@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin-600-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}


:root {
  --ivory: #f4efe5;
  --paper: #fbf8f1;
  --olive: #23362a;
  --olive-deep: #15251c;
  --terracotta: #b85e3c;
  --terracotta-dark: #98482f;
  --sage: #aeb89f;
  --cream: #e8d8bc;
  --ink-soft: #596057;
  --line: rgba(35, 54, 42, 0.18);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--olive);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.hero {
  min-height: 100svh;
  background: var(--ivory);
  display: grid;
  grid-template-rows: auto minmax(610px, 1fr) auto;
  overflow: hidden;
}

.site-header {
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 4.6vw, 76px);
  position: relative;
  z-index: 20;
  background: var(--ivory);
  border-bottom: 1px solid rgba(35, 54, 42, 0.08);
}

.brand {
  width: clamp(202px, 22vw, 304px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-mark {
  width: 100%;
  height: 55px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) sepia(0.7) hue-rotate(77deg) saturate(0.85) brightness(0.48);
}

.brand-subtitle {
  margin-left: 36%;
  margin-top: -4px;
  font-size: 9px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.5vw, 64px);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--terracotta);
  transition: right 250ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--olive);
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: 46% 54%;
  position: relative;
}

.hero-copy {
  padding: clamp(66px, 8vh, 108px) clamp(30px, 5vw, 80px) 66px clamp(30px, 5vw, 80px);
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(56px, 5.35vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.terracotta-rule {
  width: 48px;
  height: 3px;
  margin: 34px 0 24px;
  background: var(--terracotta);
}

.hero-lead {
  max-width: 570px;
  margin: 0;
  color: #37433a;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.65;
}

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

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 28px;
  border: 1px solid var(--olive);
  font-size: 14px;
  font-weight: 600;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button svg {
  width: 18px;
  transition: transform 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.button-primary {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #fffaf1;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--olive);
  color: var(--ivory);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  margin-left: -9vw;
}

.hero-image {
  object-fit: cover;
  object-position: 56% center;
  animation: heroDrift 12s ease-out both;
}

.hero-seal {
  position: absolute;
  right: clamp(22px, 4vw, 70px);
  bottom: 32px;
  width: 128px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: rgba(244, 239, 229, 0.9);
  color: var(--olive);
  border: 1px solid rgba(35, 54, 42, 0.3);
  backdrop-filter: blur(10px);
  text-align: center;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1;
}

.hero-seal svg {
  width: 28px;
}

.hero-stats {
  min-height: 138px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(30px, 5vw, 86px);
  background: rgba(251, 248, 241, 0.98);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 5;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--line);
}

.stat > svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.35;
  color: #7e9166;
}

.stat p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 400;
  line-height: 0.85;
}

.stat sup {
  font-size: 0.45em;
  vertical-align: top;
}

.stat span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(92px, 10vw, 158px) 0;
}

.section-shell {
  width: min(1380px, calc(100% - clamp(44px, 9vw, 144px)));
  margin-inline: auto;
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #e8c5aa;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.3vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.cover-image {
  object-fit: cover;
}

.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(54px, 8vw, 126px);
}

.story-media {
  min-height: 690px;
  position: relative;
  overflow: hidden;
}

.story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(21, 37, 28, 0.62));
}

.story-caption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 28px;
  display: flex;
  align-items: flex-end;
  gap: 22px;
  color: #fffaf1;
}

.story-caption span {
  color: #d7c6a9;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.story-caption p {
  max-width: 310px;
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.1;
}

.story-copy {
  max-width: 610px;
}

.story-copy h2 {
  max-width: 600px;
}

.story-copy > p:not(.section-kicker) {
  margin: 25px 0 0;
  color: #566057;
  font-size: 16px;
  line-height: 1.85;
}

.story-copy .story-intro {
  color: var(--olive);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.35;
}

.story-quote {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 36px 0 30px;
  padding: 21px 0;
  border-block: 1px solid var(--line);
}

.story-quote svg {
  width: 28px;
  color: #7e9166;
}

.story-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 7px;
}

.text-link svg {
  width: 17px;
  transition: transform 180ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(4px);
}

.products-section {
  background: var(--olive-deep);
  color: var(--ivory);
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -120px;
  border: 1px solid rgba(232, 216, 188, 0.12);
  border-radius: 50%;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.58fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 66px;
}

.split-heading > p {
  margin: 0;
  color: #bfc7bc;
  font-size: 15px;
  line-height: 1.8;
}

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

.product-card {
  min-width: 0;
  background: #203128;
  border: 1px solid rgba(244, 239, 229, 0.1);
  overflow: hidden;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 0.88;
  overflow: hidden;
  background: #293d31;
}

.product-card .cover-image {
  transition: transform 650ms cubic-bezier(0.25, 0.7, 0.2, 1), filter 350ms ease;
}

.product-card:hover .cover-image {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.product-card-copy {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 12px;
  padding: 22px;
}

.product-card-copy span {
  grid-column: 1 / -1;
  color: #a8b5a5;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.1;
}

.product-card-copy svg {
  width: 20px;
  color: #e8c5aa;
  transition: transform 200ms ease;
}

.product-card:hover .product-card-copy svg {
  transform: translateX(4px);
}

.season-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 34px 0 0;
  color: #aeb9ab;
  font-size: 12px;
}

.season-note svg {
  width: 18px;
  color: #e8c5aa;
}

.field-section {
  padding-top: 0;
  background: var(--ivory);
}

.field-banner {
  height: min(650px, 72vh);
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fffaf1;
  overflow: hidden;
}

.field-banner .cover-image {
  object-position: center 55%;
}

.field-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(12, 27, 19, 0.9) 0%, rgba(12, 27, 19, 0.58) 52%, rgba(12, 27, 19, 0.12) 100%), linear-gradient(0deg, rgba(12, 27, 19, 0.35), transparent 50%);
}

.field-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(62px, 8vw, 110px);
}

.field-copy h2 {
  max-width: 830px;
}

.field-copy > p:last-child {
  max-width: 640px;
  margin: 28px 0 0;
  color: #d9e0d8;
  font-size: 16px;
  line-height: 1.75;
}

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

.facility-card {
  min-height: 330px;
  padding: clamp(28px, 3.2vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.facility-card > svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.3;
  color: #79905f;
}

.facility-number {
  margin: 47px 0 8px;
  font-family: var(--serif);
  font-size: clamp(38px, 3.6vw, 58px);
  line-height: 0.95;
}

.facility-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.facility-card > p:last-child {
  margin: 18px 0 0;
  color: #647068;
  font-size: 13px;
  line-height: 1.7;
}

.facility-featured {
  background: var(--terracotta);
  color: #fffaf1;
  border-color: rgba(255, 255, 255, 0.18);
}

.facility-featured > svg,
.facility-featured > p:last-child {
  color: #fff3e8;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 62px;
  background: var(--olive);
  color: var(--ivory);
}

.process-strip > div {
  min-height: 162px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
}

.process-strip > div + div {
  border-left: 1px solid rgba(244, 239, 229, 0.18);
}

.process-strip svg {
  flex: 0 0 auto;
  width: 30px;
  color: #c5d0ac;
  stroke-width: 1.4;
}

.process-strip p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-strip strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.process-strip span {
  color: #bdc8c0;
  font-size: 11px;
  line-height: 1.6;
}

.quality-section {
  background: #e9e3d5;
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(56px, 9vw, 140px);
  align-items: center;
}

.quality-copy > p:not(.section-kicker) {
  margin: 30px 0 0;
  color: #5b655d;
  font-size: 15px;
  line-height: 1.85;
}

.quality-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.quality-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(35, 54, 42, 0.16);
  font-size: 13px;
}

.quality-list svg {
  width: 18px;
  color: var(--terracotta);
}

.certifications-panel {
  padding: clamp(32px, 4.4vw, 62px);
  background: var(--paper);
  border: 1px solid rgba(35, 54, 42, 0.13);
  box-shadow: 0 30px 70px rgba(40, 50, 42, 0.08);
}

.certifications-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.certifications-heading > svg {
  width: 34px;
  color: var(--terracotta);
  stroke-width: 1.4;
}

.certifications-heading span {
  display: block;
  color: #788078;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.certifications-heading h3 {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}

.certification-logo {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: #fff;
}

.certification-document {
  cursor: zoom-in;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.certification-document:hover,
.certification-document:focus-visible {
  position: relative;
  z-index: 2;
  transform: translateY(-3px);
  outline: none;
  box-shadow: 0 14px 28px rgba(35, 54, 42, 0.12);
}

.certification-logo img {
  width: 150px;
  height: 102px;
  object-fit: contain;
  filter: saturate(0.82);
}

.certification-logo span {
  color: #5b655d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certification-note {
  margin: 22px 0 0;
  color: #727970;
  font-size: 10px;
  line-height: 1.6;
}

.contact-section {
  background: var(--olive-deep);
  color: var(--ivory);
}

.contact-heading {
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 239, 229, 0.18);
}

.contact-heading h2 {
  max-width: 980px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(64px, 10vw, 150px);
  padding-top: 64px;
}

.contact-lead {
  max-width: 460px;
  margin: 0 0 44px;
  color: #bdc8c0;
  font-size: 15px;
  line-height: 1.8;
}

.contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 25px 0;
  border-top: 1px solid rgba(244, 239, 229, 0.16);
}

.contact-item > svg {
  width: 22px;
  color: #d8b397;
  stroke-width: 1.4;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.contact-item span {
  color: #8f9e93;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-item p,
.contact-item a {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-item a svg {
  width: 14px;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: #e8c5aa;
}

.vat {
  margin: 24px 0 0;
  color: #88958b;
  font-size: 10px;
  line-height: 1.6;
}

.contact-form {
  padding: clamp(30px, 4vw, 54px);
  background: var(--ivory);
  color: var(--olive);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label:not(.privacy-check) {
  display: block;
  margin-bottom: 25px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 9px;
  color: #666f67;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(35, 54, 42, 0.32);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--olive);
  font-family: var(--sans);
  font-size: 15px;
}

.contact-form input:not([type="checkbox"]) {
  height: 46px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 10px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 1px 0 var(--terracotta);
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin: 4px 0 24px;
  cursor: pointer;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--terracotta);
}

.privacy-check span {
  margin: 0 !important;
  font-size: 9px !important;
  line-height: 1.6;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}

.submit-button {
  min-width: 225px;
  cursor: pointer;
}

.form-note {
  margin: 15px 0 0;
  color: #747d75;
  font-size: 9px;
  line-height: 1.55;
}

.site-footer {
  padding: 72px 0 24px;
  background: #0e1913;
  color: var(--ivory);
  border-top: 1px solid rgba(244, 239, 229, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
  gap: 50px;
}

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

.footer-brand .brand-mark {
  filter: grayscale(1) brightness(4.2);
  opacity: 0.92;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
}

.footer-grid nav a,
.footer-contact a {
  color: #bdc8c0;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: #fffaf1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 62px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 239, 229, 0.12);
  color: #758178;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hosting-credit {
  margin-top: 18px;
  color: #758178;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-align: center;
}

.hosting-credit a {
  margin-left: 3px;
  color: #c9d4cc;
  font-weight: 600;
  border-bottom: 1px solid rgba(201, 212, 204, 0.45);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.hosting-credit a:hover,
.hosting-credit a:focus-visible {
  color: #fffaf1;
  border-color: #fffaf1;
}

@keyframes heroDrift {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

@media (max-width: 1050px) {
  .hero h1 {
    font-size: clamp(50px, 6.2vw, 68px);
  }

  .hero-grid {
    grid-template-columns: 52% 48%;
  }

  .hero-visual {
    margin-left: -6vw;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    min-width: 250px;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .story-media {
    min-height: 610px;
  }

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

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

  .process-strip {
    grid-template-columns: 1fr;
  }

  .process-strip > div + div {
    border-left: 0;
    border-top: 1px solid rgba(244, 239, 229, 0.18);
  }

  .quality-grid {
    gap: 56px;
  }

  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 54px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 82px;
  }

  .hero {
    min-height: auto;
    grid-template-rows: auto auto auto;
  }

  .site-header {
    height: 82px;
    padding: 0 20px;
    position: relative;
  }

  .brand {
    width: 190px;
  }

  .brand-mark {
    height: 46px;
  }

  .brand-subtitle {
    font-size: 7px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 30;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 82px 0 0;
    z-index: 19;
    background: var(--olive-deep);
    color: var(--ivory);
    transform: translateX(100%);
    transition: transform 350ms cubic-bezier(0.7, 0, 0.2, 1);
    visibility: hidden;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-menu nav {
    padding: 52px 26px;
  }

  .mobile-menu a {
    min-height: 76px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(244, 239, 229, 0.18);
    font-family: var(--serif);
    font-size: 34px;
  }

  .mobile-menu a span {
    color: var(--sage);
    font-family: var(--sans);
    font-size: 10px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    padding: 62px 22px 54px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.3vw, 68px);
    line-height: 0.98;
  }

  .terracotta-rule {
    margin: 28px 0 22px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: 480px;
    width: 100%;
    margin: 0;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-seal {
    width: 100px;
    right: 18px;
    bottom: 20px;
    font-size: 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    padding: 16px 22px;
  }

  .stat {
    justify-content: flex-start;
    min-height: 104px;
  }

  .stat + .stat::before {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
  }

  .section {
    padding: 84px 0;
  }

  .section-shell {
    width: min(100% - 40px, 1380px);
  }

  .section h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .story-grid,
  .split-heading,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 52px;
  }

  .story-media {
    min-height: 500px;
  }

  .story-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .story-copy .story-intro {
    font-size: 23px;
  }

  .split-heading {
    gap: 24px;
    margin-bottom: 42px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-image-wrap {
    aspect-ratio: 1.25 / 1;
  }

  .field-banner {
    min-height: 560px;
    align-items: flex-end;
  }

  .field-overlay {
    background: linear-gradient(0deg, rgba(12, 27, 19, 0.9) 0%, rgba(12, 27, 19, 0.5) 74%, rgba(12, 27, 19, 0.18) 100%);
  }

  .field-copy {
    padding-bottom: 54px;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    width: 100%;
    border-left: 0;
  }

  .facility-card {
    min-height: 285px;
    border-right: 0;
    padding: 32px 22px;
  }

  .facility-number {
    margin-top: 34px;
  }

  .process-strip {
    width: calc(100% - 40px);
    margin-top: 40px;
  }

  .process-strip > div {
    min-height: 142px;
    align-items: flex-start;
  }

  .quality-grid {
    gap: 48px;
  }

  .certifications-panel {
    padding: 26px 20px;
  }

  .certification-logo {
    min-height: 158px;
  }

  .certification-logo img {
    width: 116px;
    height: 82px;
  }

  .contact-heading {
    padding-bottom: 38px;
  }

  .contact-grid {
    gap: 46px;
    padding-top: 44px;
  }

  .contact-form {
    margin-inline: -20px;
    padding: 34px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .submit-button {
    width: 100%;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 46px;
  }
}

@media (max-width: 420px) {
  .certifications-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
