:root {
  --forest: #1a581e;
  --olive: #5c7007;
  --leaf: #7c9027;
  --cream: #efefed;
  --pale: #eceed1;
  --gold: #ccaf29;
  --warm: #d9bb6e;
  --ink: #172416;
  --muted: #5c6758;
  --white: #ffffff;
  --line: rgba(26, 88, 30, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(239, 239, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 10px;
}

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

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.82fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(52px, 8vw, 108px) clamp(20px, 5vw, 72px) clamp(40px, 7vw, 80px);
  background: var(--pale);
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 23px;
  line-height: 1.15;
}

.hero-text {
  max-width: 670px;
  color: #394733;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

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

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

.button.secondary {
  color: var(--forest);
  background: transparent;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 620px);
  justify-self: end;
  padding: 10px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(26, 88, 30, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(26, 88, 30, 0.14);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(26, 88, 30, 0.14);
  border-radius: 6px;
}

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

.proof-strip div {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 46px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--forest);
  font-size: 20px;
  margin-bottom: 8px;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.5;
}

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

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

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.product-body {
  padding: 22px;
}

.product-body p,
.quality-copy p,
.contact-section p {
  color: var(--muted);
  line-height: 1.58;
}

.product-body ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #33462f;
  line-height: 1.65;
}

.spec-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-copy h3 {
  margin-bottom: 10px;
}

.spec-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.spec-table-wrap {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

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

.spec-table th {
  color: var(--white);
  background: var(--forest);
  font-size: 13px;
  text-transform: uppercase;
}

.spec-table td {
  color: #33462f;
}

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

.split-section {
  background: var(--forest);
}

.split-section .eyebrow,
.split-section h2 {
  color: var(--white);
}

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

.solution-list div {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 19px;
  font-weight: 800;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

.workflow-section {
  background: var(--pale);
}

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

.workflow-grid div {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.workflow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 900;
}

.workflow-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 20px;
}

.workflow-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.quality-grid {
  display: grid;
  gap: 14px;
}

.quality-grid div {
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: var(--cream);
}

.quality-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 900;
}

.quality-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 21px;
}

.quality-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.56;
}

.certification-section {
  background: var(--cream);
}

.certification-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.58;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.cert-card {
  min-height: 176px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 22px 14px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cert-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.cert-card strong {
  color: var(--forest);
  font-size: 16px;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(26px, 5vw, 64px);
  padding: clamp(62px, 9vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--leaf);
  overflow: hidden;
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: var(--white);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--pale);
  font-weight: 800;
}

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

.inquiry-points strong {
  flex-basis: 100%;
  color: var(--white);
}

.inquiry-points span {
  padding: 8px 10px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.hidden-field {
  display: none;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(26, 88, 30, 0.22);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.qr-code {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: 28px;
  width: 104px;
  height: 104px;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--pale);
  background: var(--forest);
  font-size: 14px;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
}

.simple-page {
  min-height: 100vh;
  background: var(--cream);
}

.simple-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0;
}

.simple-content {
  padding: clamp(26px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.simple-content h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.simple-content h2 {
  margin-top: 34px;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.2;
}

.simple-content p,
.simple-content li {
  color: var(--muted);
  line-height: 1.65;
}

.simple-content ul {
  padding-left: 20px;
}

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

@media (max-width: 1040px) {
  .hero,
  .quality-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .spec-panel,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

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

  .qr-code {
    position: static;
  }
}

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

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 42px;
  }

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

  .proof-strip,
  .product-grid,
  .solution-list,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .product-card img {
    aspect-ratio: 1 / 0.68;
  }

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