:root {
  --green: #062c1e;
  --green-dark: #00150c;
  --green-muted: #426655;
  --pine: #f4e1c1;
  --sand: #fbf7ef;
  --surface: #f9f9f9;
  --line: rgba(6, 44, 30, 0.12);
  --text: #1a1c1c;
  --muted: #59615c;
  --white: #ffffff;
  --content-max: 1280px;
  --page-pad: clamp(20px, 5vw, 72px);
  --section-y: clamp(72px, 9vw, 120px);
  --button-width: 265px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--surface);
  color: var(--text);
  display: flex;
  flex-direction: column;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
  overflow: hidden;
  padding-top: var(--header-height);
}

.site-footer {
  flex-shrink: 0;
}

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

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

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

h1,
h2,
h3,
.brand {
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(6, 44, 30, 0.08);
  box-shadow: 0 12px 32px rgba(0, 21, 12, 0.08);
  left: 0;
  min-height: var(--header-height);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.15vw, 30px);
  margin: 0 auto;
  min-height: 84px;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.brand {
  color: var(--green);
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: none;
  white-space: nowrap;
}

.brand span {
  font-weight: 700;
  text-transform: uppercase;
}

.brand strong {
  color: var(--green-dark);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin-left: 4px;
}

.main-nav {
  display: flex;
  gap: clamp(16px, 2.15vw, 30px);
  margin-left: auto;
}

.main-nav a,
.header-cta,
.button,
.section-label,
.product-body p,
.data-list dt,
.site-footer nav {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a,
.header-cta,
.button,
.hero .eyebrow {
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--muted);
  padding: 8px 0;
  position: relative;
  transition: color 160ms ease;
}

.main-nav a::after {
  background: var(--green);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--green);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  background: var(--green);
  color: var(--white);
  width: var(--button-width);
  padding: 18px 28px;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--green-dark);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(6, 44, 30, 0.24);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  list-style: none;
  transition: background-color 160ms ease, border-color 160ms ease;
  width: 42px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  background: var(--green);
  display: block;
  height: 1px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 20px;
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-panel {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(0, 21, 12, 0.1);
  display: grid;
  left: 0;
  padding: 8px var(--page-pad) 18px;
  position: fixed;
  right: 0;
  top: var(--header-height);
}

.mobile-menu-panel a {
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 13px 0;
  text-transform: uppercase;
}

.mobile-menu-panel a.is-active {
  color: var(--green-dark);
  font-weight: 800;
}

.mobile-menu-panel .mobile-menu-cta {
  background: var(--green);
  border-bottom: 0;
  color: var(--white);
  margin-top: 12px;
  padding: 15px 18px;
  text-align: center;
}

.js-ready .hero-image {
  animation: heroImageIn 900ms ease both;
}

.js-ready .hero-shade {
  animation: heroShadeIn 700ms ease both;
}

.js-ready .hero-content > * {
  animation: heroContentIn 620ms ease both;
}

.js-ready .hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.js-ready .hero-content > *:nth-child(3) {
  animation-delay: 170ms;
}

.js-ready .hero-content > *:nth-child(4) {
  animation-delay: 240ms;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroShadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  display: grid;
  min-height: clamp(500px, 66vh, 690px);
  overflow: hidden;
  place-items: center start;
  position: relative;
}

.hero-image,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 21, 12, 0.86), rgba(0, 21, 12, 0.42) 52%, rgba(0, 21, 12, 0.12)),
    linear-gradient(0deg, rgba(0, 21, 12, 0.2), transparent 46%);
}

.hero-content {
  color: var(--white);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) 0;
  position: relative;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
  z-index: 1;
}

.hero-topline,
.section-kicker {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 18px;
  width: 100%;
}

.hero-topline {
  max-width: 100%;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.6;
  margin-bottom: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: rgba(6, 44, 30, 0.62);
}

.hero .eyebrow,
.hero-copy {
  line-height: 1.6;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  max-width: 820px;
}

.hero h1 span {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0125em;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin-top: 28px;
  max-width: 640px;
}

.hero-copy p + p {
  margin-top: 4px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-divider {
  background: rgba(255, 255, 255, 0.35);
  display: block;
  height: 1px;
  width: 96px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.hero .button {
  width: var(--button-width);
}

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

.button-light:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-outline-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
}

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

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

.section {
  padding: var(--section-y) 0;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.intro,
.products,
.specs,
.split,
.origin,
.contact,
.site-footer {
  margin: 0 auto;
}

.section-label {
  border-left: 2px solid var(--green);
  color: var(--green-muted);
  margin-bottom: 28px;
  padding-left: 18px;
}

.intro-grid {
  display: grid;
  gap: clamp(28px, 6vw, 96px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.intro h2,
.section-heading h2,
.specs h2,
.split-copy h2,
.process-card h2,
.contact h2 {
  color: var(--green);
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

.intro p,
.split-copy p,
.process-card p,
.contact-box p {
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}

.proof-strip {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: 32px;
}

.proof-strip strong {
  color: var(--green);
  display: block;
  font-size: 34px;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  display: block;
  margin-top: 10px;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 64px;
}

.section-title-block {
  border-left: 2px solid var(--green);
  padding-left: 36px;
  width: 100%;
}

.section-title-block > .eyebrow {
  margin-bottom: 18px;
}

.section-title-block h2 {
  color: var(--green-dark);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  max-width: 760px;
}

.section-heading .eyebrow {
  color: var(--green-muted);
}

.section-cta {
  align-items: center;
  color: var(--green);
  display: inline-flex;
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 24px;
  letter-spacing: 0.18em;
  line-height: 1.6;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-cta-light {
  color: var(--white);
}

.hero-topline .section-cta,
.section-kicker .section-cta {
  margin-top: 0;
}

.section-cta span {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.product-grid {
  align-items: start;
  display: grid;
  column-gap: 36px;
  row-gap: 56px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.product-card:nth-child(2) {
  margin-top: 64px;
}

.product-card:nth-child(3) {
  margin-top: 28px;
}

.product-card img {
  aspect-ratio: 3 / 4;
  border-bottom: 1px solid var(--line);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-body h3 {
  color: var(--green);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}

.product-body span {
  color: var(--muted);
  display: block;
}

.product-body b {
  border-top: 1px solid rgba(6, 44, 30, 0.14);
  color: var(--green);
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: auto;
  padding-top: 16px;
  text-transform: uppercase;
}

.product-specs {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
}

.product-specs div,
.price-list li {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.product-specs dt,
.price-list span {
  color: var(--green);
  font-weight: 600;
}

.product-specs dd {
  color: var(--muted);
  margin: 0;
  text-align: right;
}

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

.price-list strong {
  color: var(--muted);
  font-weight: 500;
  text-align: right;
}

.general {
  background: var(--white);
  padding: var(--section-y) 0;
  width: 100%;
}

.general-inner {
  align-items: start;
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.general-heading,
.technology-heading {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.general-image,
.technology-image {
  padding: 48px 0 0 48px;
  position: relative;
}

.general-image::before,
.general-image::after,
.technology-image::before,
.technology-image::after {
  content: "";
  position: absolute;
}

.general-image::before,
.technology-image::before {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  height: 180px;
  left: 0;
  top: 0;
  width: 180px;
}

.general-image::after,
.technology-image::after {
  background: rgba(6, 44, 30, 0.08);
  bottom: -34px;
  filter: blur(26px);
  height: 60px;
  left: 70px;
  right: 40px;
}

.general-image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.feature-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  max-width: 620px;
  padding: 0;
}

.feature-list li {
  padding-bottom: 0;
}

.feature-list strong {
  color: var(--green);
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-list span {
  color: var(--muted);
  line-height: 1.65;
}

.delivery {
  background: var(--green);
  color: var(--white);
  padding: clamp(39px, 3.5vw, 56px) 0;
  width: 100%;
}

.delivery-inner {
  align-items: start;
  display: grid;
  column-gap: clamp(56px, 7vw, 112px);
  row-gap: 54px;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1fr);
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.delivery-heading {
  align-items: end;
  display: flex;
  gap: 32px;
  grid-column: 1 / -1;
  justify-content: space-between;
}

.delivery .section-title-block {
  border-left-color: rgba(255, 255, 255, 0.45);
}

.delivery .eyebrow,
.delivery .section-title-block h2,
.delivery .section-cta {
  color: var(--white);
}

.delivery .section-cta {
  border-bottom-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.delivery .section-cta:hover {
  border-bottom-color: var(--white);
}

.delivery-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.delivery-list li {
  padding-bottom: 0;
}

.delivery-list strong {
  color: var(--white);
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.delivery-list span {
  color: rgba(255, 255, 255, 0.74);
}

.delivery-image {
  padding-bottom: 64px;
  position: relative;
}

.delivery-image img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.delivery-capacity {
  background: var(--white);
  bottom: 0;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
  color: var(--green);
  min-width: min(430px, 72%);
  padding: 42px 48px;
  position: absolute;
  right: 0;
  z-index: 2;
}

.delivery-capacity::before {
  background: var(--green);
  content: "";
  height: 72px;
  left: 32px;
  position: absolute;
  top: 44px;
  width: 2px;
}

.delivery-capacity p {
  color: var(--muted);
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin: 0 0 14px;
  padding-left: 48px;
  text-transform: uppercase;
}

.delivery-capacity strong {
  display: block;
  color: var(--green);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0125em;
  line-height: 1;
  padding-left: 48px;
}

.technology {
  background: var(--sand);
  padding: var(--section-y) 0;
  width: 100%;
}

.technology-inner {
  align-items: start;
  display: grid;
  gap: clamp(48px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.technology-text {
  color: var(--muted);
  display: grid;
  font-size: 18px;
  gap: 18px;
  line-height: 1.75;
  max-width: 620px;
}

.technology-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.origin {
  align-items: start;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
}

.origin-copy {
  border-left: 2px solid var(--green);
  padding-left: clamp(22px, 3vw, 42px);
}

.origin-copy h2 {
  color: var(--green);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
}

.origin-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  margin-top: 26px;
  max-width: 640px;
}

.origin-list {
  display: grid;
  gap: 18px;
}

.origin-list article {
  background: var(--sand);
  border: 1px solid rgba(6, 44, 30, 0.08);
  padding: 28px;
}

.origin-list span {
  color: var(--green-muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}

.origin-list h3 {
  color: var(--green);
  font-size: 24px;
  line-height: 1.12;
}

.origin-list p {
  color: var(--muted);
  margin-top: 12px;
}

.specs {
  align-items: start;
  background: #eeeeee;
  display: grid;
  gap: clamp(36px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
}

.data-list {
  margin: 0;
}

.data-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 180px 1fr;
  padding: 20px 0;
}

.data-list dt {
  color: var(--green);
}

.data-list dd {
  color: var(--muted);
  margin: 0;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 96px);
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.8fr);
}

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

.split-image {
  position: relative;
}

.capacity-card {
  background: var(--white);
  bottom: 24px;
  color: var(--green);
  padding: 26px 30px;
  position: absolute;
  right: 24px;
  width: min(280px, 72%);
}

.capacity-card span {
  color: var(--green-muted);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capacity-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-top: 10px;
}

.capacity-card small {
  color: var(--muted);
  display: block;
  margin-top: 8px;
}

.split-copy p {
  margin-top: 24px;
}

.metrics {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  padding-top: 28px;
}

.metrics strong {
  color: var(--green);
  display: block;
  font-size: 42px;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 8px;
  text-transform: uppercase;
}

.process {
  background: var(--green);
  color: var(--white);
  max-width: none;
  padding: var(--section-y) 0;
  width: 100%;
}

.process-card {
  align-items: center;
  display: grid;
  gap: clamp(36px, 7vw, 88px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

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

.process-card h2 {
  color: var(--white);
}

.process-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 22px;
}

.sustainability {
  min-height: 590px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.sustainability > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.sustainability::after {
  background:
    linear-gradient(180deg, rgba(0, 21, 12, 0.16), rgba(0, 21, 12, 0.78)),
    linear-gradient(90deg, rgba(0, 21, 12, 0.46), rgba(0, 21, 12, 0.1));
  content: "";
  inset: 0;
  position: absolute;
}

.sustainability-inner {
  align-items: start;
  display: grid;
  column-gap: clamp(36px, 6vw, 88px);
  row-gap: 34px;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  margin: 0 auto;
  min-height: 590px;
  padding: clamp(56px, 7vw, 92px) 0;
  position: relative;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
  z-index: 1;
}

.sustainability-panel {
  background: rgba(5, 25, 17, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  color: var(--white);
  grid-row: 1 / span 2;
  max-width: 680px;
  padding: clamp(36px, 5vw, 58px);
}

.sustainability-cta {
  justify-self: end;
  margin-top: calc(clamp(36px, 5vw, 58px) - 15px);
}

.sustainability-wood {
  justify-self: end;
  max-width: 420px;
  padding: 28px 28px 0 0;
  position: relative;
  width: 100%;
}

.sustainability-wood::before {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  content: "";
  height: 120px;
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
}

.sustainability-wood img {
  aspect-ratio: 3 / 2;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.sustainability-panel .eyebrow,
.sustainability-panel h2 {
  color: var(--white);
}

.sustainability-panel h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0125em;
  line-height: 1.18;
}

.sustainability-text {
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.sustainability-proof {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 30px;
  padding-top: 24px;
}

.sustainability-proof strong {
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.sustainability-proof span {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  background: var(--white);
  padding: var(--section-y) 0;
  width: 100%;
}

.contact-inner {
  align-items: start;
  display: grid;
  column-gap: clamp(56px, 7vw, 96px);
  row-gap: 46px;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.contact-heading {
  margin-bottom: 42px;
}

.contact-copy {
  max-width: 680px;
}

.contact-list {
  color: var(--muted);
  display: grid;
  font-size: 16px;
  gap: 6px;
  line-height: 1.55;
  list-style: disc;
  margin: 0;
  padding-left: 18px;
}

.contact-list li::marker {
  color: var(--green);
}

.contact-details {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 30px;
}

.contact-details h3 {
  color: var(--green-dark);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  max-width: 560px;
}

.contact-details h3 span,
.contact-details h3 strong {
  display: block;
}

.contact-details h3 span {
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-details h3 strong {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0125em;
}

.contact-details dl {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.contact-details div {
  display: grid;
  gap: 18px;
  grid-template-columns: 120px minmax(0, 1fr);
}

.contact-details dt {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.contact-details dd {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

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

.contact-form {
  background: var(--white);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.contact-form-title {
  margin-bottom: 18px;
}

.form-status {
  border: 1px solid var(--line);
  font-size: 15px;
  margin: 0;
  padding: 14px 16px;
}

.form-status-success {
  background: rgba(6, 44, 30, 0.06);
  color: var(--green);
}

.form-status-error {
  background: rgba(140, 32, 24, 0.06);
  border-color: rgba(140, 32, 24, 0.18);
  color: #8c2018;
}

.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  min-height: 52px;
  outline: none;
  padding: 14px 16px;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(6, 44, 30, 0.58);
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(6, 44, 30, 0.42);
}

.upload-field {
  align-content: center;
  background: var(--surface);
  border: 1px dashed rgba(6, 44, 30, 0.32);
  cursor: pointer;
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 18px;
  position: relative;
  text-align: center;
}

.upload-field:hover,
.upload-field:focus-within,
.upload-field.is-dragging {
  border-color: var(--green);
}

.upload-native {
  cursor: pointer;
  inset: 0;
  opacity: 0;
  position: absolute;
  z-index: 1;
}

.upload-display,
.upload-files {
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.upload-display {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.upload-files {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.upload-error {
  color: #8c2018;
}

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

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

.legal-hero {
  background: var(--surface);
  padding: clamp(64px, 8vw, 104px) 0 clamp(42px, 6vw, 72px);
}

.legal-hero .section-title-block,
.legal-content {
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), 920px);
}

.legal-hero h1 {
  color: var(--green-dark);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
}

.legal-content {
  padding: clamp(52px, 7vw, 88px) 0;
}

.legal-card {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-card h2,
.legal-card h3 {
  color: var(--green);
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.legal-card h2 {
  font-size: 22px;
  margin: 0 0 14px;
}

.legal-card h3 {
  font-size: 16px;
  margin: 34px 0 8px;
  text-transform: uppercase;
}

.legal-card p + h2 {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 34px;
}

.legal-card p {
  margin: 0 0 18px;
}

.legal-card a {
  color: var(--green);
  font-weight: 600;
}

.legal-card code {
  background: var(--surface);
  color: var(--green);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  padding: 2px 5px;
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(0, 21, 12, 0.9), rgba(0, 21, 12, 0.62) 55%, rgba(0, 21, 12, 0.36)),
    url("../img/main.jpg") center / cover;
  color: var(--white);
  padding: clamp(64px, 8vw, 96px) 0 34px;
  width: 100%;
}

.footer-inner {
  display: grid;
  gap: 34px;
  margin: 0 auto;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content-max));
}

.footer-brand {
  align-items: start;
  display: flex;
  gap: clamp(32px, 6vw, 84px);
  justify-content: space-between;
}

.footer-brand p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.footer-brand p {
  max-width: 420px;
  text-align: right;
}

.footer-nav,
.footer-legal {
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 34px);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-nav a,
.footer-legal a,
.site-footer .brand {
  transition: color 160ms ease;
}

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

.footer-nav a,
.footer-legal a {
  font-family: "Hanken Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding-top: 26px;
}

.footer-legal {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .header-inner {
    gap: 18px;
    justify-content: space-between;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .intro-grid,
  .specs,
  .split,
  .process-card,
  .contact-inner,
  .general-inner,
  .delivery-inner,
  .technology-inner,
  .sustainability-inner,
  .origin {
    grid-template-columns: 1fr;
  }

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

  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 64px;
    --page-pad: 10px;
    --section-y: 58px;
  }

  .site-header,
  .header-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 16px;
  }

  .mobile-menu summary {
    height: 40px;
    width: 40px;
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-content {
    padding: 48px 0 54px;
  }

  .hero-topline,
  .section-kicker {
    align-items: start;
    display: grid;
    gap: 8px;
    justify-content: stretch;
  }

  .hero-topline .section-cta,
  .section-kicker .section-cta {
    justify-self: start;
  }

  .section-title-block {
    padding-left: 22px;
  }

  .section-title-block h2 {
    font-size: 26px;
  }

  .hero-actions,
  .hero .button {
    width: 100%;
  }

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

  .section-heading {
    align-items: start;
    display: block;
  }

  .section-cta {
    margin-top: 0;
  }

  .products.section {
    padding-top: 56px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .product-body {
    padding: 26px 24px;
  }

  .product-body h3 {
    font-size: 28px;
  }

  .general-image,
  .technology-image {
    padding: 22px 0 0 22px;
  }

  .general-image::before,
  .technology-image::before {
    height: 120px;
    width: 120px;
  }

  .general-inner,
  .technology-inner {
    gap: 34px;
  }

  .delivery-inner {
    row-gap: 34px;
  }

  .delivery-capacity {
    padding: 26px 28px;
  }

  .delivery-capacity strong {
    font-size: 30px;
  }

  .sustainability {
    min-height: 0;
  }

  .sustainability-inner {
    min-height: 0;
    padding: 56px 0;
  }

  .sustainability-panel {
    padding: 28px;
  }

  .sustainability-cta {
    justify-self: start;
    margin-top: 0;
  }

  .delivery-heading {
    align-items: start;
    display: block;
  }

  .delivery-image {
    padding-bottom: 0;
  }

  .contact-details div {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-bottom {
    align-items: start;
    display: grid;
    gap: 20px;
  }

  .footer-brand p {
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-start;
  }

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

  .capacity-card {
    margin-top: 18px;
    position: static;
    width: 100%;
  }

  .delivery-capacity {
    min-width: 0;
    padding: 30px 32px;
    position: relative;
    width: 100%;
  }

  .delivery-capacity::before {
    height: 56px;
    left: 24px;
    top: 30px;
  }

  .delivery-capacity p,
  .delivery-capacity strong {
    padding-left: 32px;
  }

  .section-heading .eyebrow {
    margin-bottom: 14px;
  }

  .data-list div {
    gap: 6px;
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
