:root {
  --ink: #14201d;
  --muted: #617069;
  --surface: #f5f7f4;
  --surface-strong: #e8eee8;
  --line: #d9e0da;
  --brand: #087a54;
  --brand-strong: #04543e;
  --gold: #f4c32f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 32, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(245, 247, 244, 0.93);
  border-bottom: 1px solid rgba(217, 224, 218, 0.72);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: auto;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.12rem;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #263b35;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 22, 0.84) 0%, rgba(7, 24, 22, 0.58) 42%, rgba(7, 24, 22, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 24, 22, 0.7) 0%, rgba(7, 24, 22, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

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

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

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

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.07rem;
}

.intro-copy p + p {
  margin-top: 18px;
}

.metrics {
  padding-top: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.metrics-grid div {
  min-height: 156px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metrics-grid div:last-child {
  border-right: 0;
}

.metrics-grid strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
}

.metrics-grid span {
  display: block;
  max-width: 260px;
  margin-top: 18px;
  font-weight: 700;
}

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

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

.section-heading > p:last-child {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.solution-card div {
  padding: 22px;
}

.solution-card p,
.values p,
.contact p {
  color: var(--muted);
}

.values {
  background: var(--surface-strong);
}

.values-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.values-layout > div:first-child p:last-child,
.contact-layout > div:first-child p:last-child {
  max-width: 520px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.supplier-support {
  background: var(--white);
}

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

.process-grid article {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  font-weight: 800;
}

.process-grid p {
  color: var(--muted);
}

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

.sector-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--brand);
  background: var(--white);
  font-weight: 700;
}

.contact {
  background: #10251f;
  color: var(--white);
}

.contact .section-kicker {
  color: #e4bd6c;
}

.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  font-size: 0.86rem;
}

.site-footer {
  padding: 30px clamp(18px, 5vw, 72px);
  background: #071815;
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-inner .brand {
  padding: 7px 12px 7px 8px;
  border-radius: 8px;
  background: var(--white);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 46px;
  }

  .two-column,
  .values-layout,
  .contact-layout,
  .solution-grid,
  .process-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-grid div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 520px) {
  .site-header {
    min-height: 66px;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

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

  .contact-form {
    padding: 20px;
  }
}
