:root {
  --ink: #202216;
  --text: #34382a;
  --muted: #686d59;
  --olive: #59602d;
  --olive-dark: #30351c;
  --olive-soft: #a3a76e;
  --paper: #f7f4ec;
  --stone: #ebe6d9;
  --white: #fffdf8;
  --footer: #151713;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font: 400 16px/1.55 "Inter", Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 clamp(24px, 5vw, 68px);
  color: var(--white);
  background: rgba(48, 53, 28, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: block;
  width: 60px;
  height: 36px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 34px 0 30px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 3px;
  background: var(--olive-soft);
  content: "";
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  text-transform: uppercase;
}

.hero,
.closing-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
}

.hero img,
.closing-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.closing-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 14, 9, 0.82), rgba(11, 14, 9, 0.36) 46%, rgba(11, 14, 9, 0.08)),
    linear-gradient(0deg, rgba(11, 14, 9, 0.14), rgba(11, 14, 9, 0.14));
}

.hero-content,
.closing-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 48px));
  padding: 140px 0 84px;
  margin-left: clamp(24px, 7vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.closing-hero .eyebrow {
  color: #d7d9ad;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.closing-hero h2 {
  color: var(--white);
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 6.5vw, 82px);
  line-height: 0.89;
}

h2 {
  font-size: clamp(38px, 5vw, 55px);
  line-height: 0.94;
}

.hero p:not(.eyebrow),
.closing-hero p {
  max-width: 520px;
  margin: 22px 0 26px;
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.45;
}

.hero .hero-line {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(29px, 3.4vw, 45px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero p:not(.eyebrow):not(.hero-line) {
  margin-top: 24px;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  color: var(--white);
  background: var(--olive);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.cta-secondary {
  border: 1px solid rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.08);
}

.cta:hover,
.cta:focus-visible {
  background: #737a3e;
  transform: translateY(-1px);
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  color: var(--ink);
  background: var(--white);
}

.section-pad {
  padding: clamp(56px, 7vw, 86px) clamp(24px, 5vw, 68px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(44px, 6vw, 72px);
  align-items: center;
  max-width: calc(var(--max) + 136px);
  margin: 0 auto;
  background: var(--paper);
}

.about-image img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.about-copy {
  max-width: 560px;
}

.about-copy h2 {
  margin-bottom: 22px;
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #3f4332;
}

.why-list {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(89, 96, 45, 0.22);
}

.why-list h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.why-list li {
  position: relative;
  padding-left: 18px;
  color: #3f4332;
  font-size: 15px;
  line-height: 1.45;
}

.why-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--olive);
  content: "";
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature-row article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.feature-row i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--olive);
  border-radius: 50%;
  color: var(--olive);
  font-size: 22px;
}

.feature-row span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

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

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

.market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.market-grid article {
  min-width: 0;
  border-top: 3px solid var(--olive);
  background: var(--stone);
  padding: 22px 18px 24px;
}

.market-grid span,
.work-steps span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--olive);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.market-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.market-grid p {
  margin: 0;
  color: #3f4332;
  font-size: 14px;
  line-height: 1.55;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 14px auto 0;
  color: #4b503e;
  font-size: 17px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 34px;
  max-width: var(--max);
  margin: 0 auto;
}

.product-category {
  min-width: 0;
  border-top: 3px solid var(--olive);
  padding-top: 18px;
}

.category-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.category-photos img {
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  object-position: center center;
}

.product-category h3 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.product-category p {
  max-width: 540px;
  margin: 0;
  color: #464b38;
  font-size: 15px;
  line-height: 1.6;
}

.product-photo {
  display: grid;
  aspect-ratio: 1 / 1.22;
  place-items: center;
  background-color: #f0ede6;
  overflow: hidden;
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.capabilities {
  background: var(--stone);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}

.capability-image {
  min-height: 100%;
  background: #d7d1c3;
  overflow: hidden;
}

.capability-image img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center center;
}

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

.capability-grid article {
  min-width: 0;
  background: var(--white);
  border-left: 4px solid var(--olive);
  padding: 22px 22px 24px;
}

.capability-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--olive);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.capability-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.capability-grid p {
  margin: 0;
  color: #3f4332;
  font-size: 15px;
  line-height: 1.55;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: var(--max);
  margin: 28px auto 0;
  padding: 18px;
  color: var(--white);
  background: var(--olive-dark);
}

.process-flow span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  padding: 0 14px;
  color: rgba(255, 253, 248, 0.92);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-flow span:not(:last-child)::after {
  margin-left: 10px;
  color: var(--olive-soft);
  content: ">";
}

.how-work {
  background: var(--white);
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.work-steps article {
  min-width: 0;
  border-left: 4px solid var(--olive);
  background: var(--stone);
  padding: 22px 22px 24px;
}

.work-steps h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 21px;
  line-height: 1.05;
  text-transform: uppercase;
}

.work-steps p {
  margin: 0;
  color: #3f4332;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.closing-hero {
  min-height: 560px;
}

.closing-content {
  width: min(760px, calc(100% - 48px));
  padding: 54px 0;
}

.closing-hero h2 {
  max-width: 600px;
  font-size: clamp(45px, 6vw, 74px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) minmax(260px, 1fr) minmax(130px, 0.62fr) minmax(170px, 0.7fr);
  gap: 42px;
  padding: 48px clamp(24px, 5vw, 68px) 28px;
  color: rgba(255, 253, 248, 0.82);
  background: linear-gradient(110deg, #171914, #22241c);
}

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

.footer-brand p {
  max-width: 290px;
  margin: 18px 0 22px;
}

.footer-brand .compliance-note {
  margin-top: -8px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.certs span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.site-footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 21px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  margin: 0 0 12px;
}

.footer-contact i {
  margin-top: 4px;
  color: var(--olive-soft);
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  margin-bottom: 9px;
}

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

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.social-icons a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.56);
  border-radius: 50%;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  color: var(--footer);
  background: var(--white);
}

.inquiry-form {
  max-width: 760px;
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255, 253, 248, 0.2);
  padding: 26px;
  background: rgba(18, 21, 15, 0.78);
  backdrop-filter: blur(2px);
}

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

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 3px;
  padding: 11px 12px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
  font: inherit;
}

.inquiry-form input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-upload {
  position: relative;
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 3px;
  padding: 7px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
  cursor: pointer;
}

.file-button {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  border-radius: 2px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.file-name {
  min-width: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.file-upload:focus-within {
  outline: 2px solid rgba(255, 253, 248, 0.72);
  outline-offset: 2px;
}

.inquiry-form select option {
  color: var(--ink);
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form .wide {
  grid-column: 1 / -1;
}

.inquiry-form .cta {
  margin-top: 20px;
  border: 0;
  cursor: pointer;
}

.copyright {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: rgba(255, 253, 248, 0.62);
  text-align: center;
  font-size: 13px;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(32, 34, 22, 0.98);
    border: 1px solid rgba(255, 253, 248, 0.14);
  }

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

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

  .site-nav a::after {
    display: none;
  }

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

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

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

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

  .capability-layout {
    grid-template-columns: 1fr;
  }

  .capability-image img {
    min-height: 420px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0 18px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 52px;
    height: 31px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content,
  .closing-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .hero-content {
    padding-top: 92px;
  }

  h1 {
    font-size: 42px;
  }

  .feature-row,
  .product-grid,
  .site-footer,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .market-grid,
  .work-steps {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding-right: 18px;
    padding-left: 18px;
  }

  .product-grid {
    gap: 18px 14px;
  }

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

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .social,
  .inquiry-form,
  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .menu-toggle span {
    display: none;
  }

  h1 {
    font-size: 34px;
  }

  .hero p:not(.eyebrow),
  .closing-hero p {
    font-size: 16px;
  }

  .hero .hero-line {
    font-size: 24px;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid,
  .market-grid,
  .work-steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .inquiry-form .wide {
    grid-column: auto;
  }
}
