:root {
  --ink: #17211d;
  --muted: #5c6963;
  --line: #dbe5df;
  --paper: #fbfdfb;
  --soft: #eef5f0;
  --green: #006a46;
  --green-deep: #004831;
  --gold: #d4a848;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(20, 43, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-header {
  align-items: center;
  background: rgba(251, 253, 251, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 760;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-size: 14px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  min-height: calc(100vh - 72px);
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px) 76px;
}

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

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

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

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 900px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 21px;
  max-width: 650px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 760;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

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

.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-panel {
  align-self: center;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(238, 245, 240, 0.88)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: 28px;
}

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

.hero-product {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 20px 14px;
  text-align: center;
}

.hero-product img {
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0, 72, 49, 0.16);
  width: min(96px, 28vw);
}

.hero-product span {
  font-weight: 800;
}

.panel-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.section {
  border-top: 1px solid var(--line);
  padding: 82px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 260px;
  padding: 26px;
}

.product-card p,
.hero-panel p,
.split p,
.contact-band p,
.policy p {
  color: var(--muted);
}

.product-card.featured {
  display: grid;
  gap: 18px;
}

.product-card.featured img {
  border-radius: 18px;
  width: 76px;
}

.split {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.85fr 1.15fr;
}

.split > p {
  font-size: 20px;
  max-width: 780px;
}

.contact-band {
  align-items: center;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 54px clamp(20px, 5vw, 72px);
}

.contact-band .eyebrow,
.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-band .primary {
  background: var(--white);
  color: var(--green-deep);
  flex: 0 0 auto;
}

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

footer p {
  margin-bottom: 0;
}

.policy {
  margin: 0 auto;
  max-width: 860px;
  padding: 72px 20px 90px;
}

.policy h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.updated {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.policy section {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.policy h2 {
  font-size: 28px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    gap: 14px;
    overflow-x: auto;
    width: 100%;
  }

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

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .product-card {
    min-height: 0;
  }

  .contact-band,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 42px;
  }

  .lead,
  .split > p {
    font-size: 18px;
  }

  .hero-panel,
  .product-card {
    padding: 20px;
  }
}
