:root {
  --khaki: #586142;
  --khaki-dark: #22291c;
  --green: #168347;
  --white: #ffffff;
  --offwhite: #f6f5ef;
  --ink: #1d2218;
  --muted: #656b5e;
  --yellow: #f1c84b;
  --line: rgba(34, 41, 28, 0.14);
  --shadow: 0 22px 60px rgba(34, 41, 28, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.6;
}

a { color: inherit; }

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--khaki-dark);
  opacity: 0.82;
}
.nav a:hover { opacity: 1; color: var(--green); }

.menu-toggle {
  display: none;
  border: 0;
  background: var(--khaki-dark);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 22px;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 72px clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 20%, rgba(241, 200, 75, 0.28), transparent 28%),
    linear-gradient(135deg, var(--white), var(--offwhite));
}

.hero-content { max-width: 760px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
}

h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(42px, 6.8vw, 88px); letter-spacing: -0.055em; }
h2 { font-size: clamp(30px, 4vw, 54px); letter-spacing: -0.04em; }
h3 { font-size: 24px; }
.lead { margin: 24px 0 0; font-size: clamp(18px, 2vw, 24px); color: var(--muted); max-width: 680px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.btn-primary { background: var(--green); color: var(--white); box-shadow: var(--shadow); }
.btn-secondary { background: var(--white); color: var(--khaki-dark); border: 1px solid var(--line); }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  min-height: 420px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  padding: 36px;
}
.hero-card img { max-width: min(100%, 420px); height: auto; }

.section { padding: 84px clamp(20px, 5vw, 72px); }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.text-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  font-size: 20px;
  box-shadow: 0 18px 44px rgba(34, 41, 28, 0.08);
}
.text-panel p:first-child { margin-top: 0; }
.text-panel p:last-child { margin-bottom: 0; }

.section-dark {
  background: var(--khaki-dark);
  color: var(--white);
}
.section-dark .eyebrow { color: var(--yellow); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  min-height: 280px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}
.product-card p { color: rgba(255,255,255,0.74); }
.card-number {
  display: inline-block;
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 54px;
}

.chips { display: flex; flex-wrap: wrap; gap: 14px; }
.chips span {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}
.benefit {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 26px;
}
.benefit strong { display: block; font-size: 22px; margin-bottom: 10px; }
.benefit span { color: var(--muted); }

.cta {
  margin: 0 clamp(20px, 5vw, 72px) 72px;
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  background: var(--green);
  color: var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.cta .eyebrow { color: var(--yellow); }
.cta p { color: rgba(255,255,255,0.84); }
.contact-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 24px;
}
.contact-card a { color: var(--white); font-weight: 800; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer a { text-decoration: none; font-weight: 800; }

@media (max-width: 920px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav {
    position: absolute;
    top: 75px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 16px 18px; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-card { min-height: 280px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefits { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { padding-inline: 16px; }
  .brand span { font-size: 14px; }
  .hero, .section { padding-inline: 16px; }
  .product-grid { grid-template-columns: 1fr; }
  .cta { margin-inline: 16px; }
  .footer { flex-direction: column; }
}

.product-image {
  margin: 5px 0;
  border-radius: 5px;
  object-fit: cover;
  max-width: 5em;
  height: auto;
  float: right;
}

.coming-soon {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--yellow);
  color: var(--khaki-dark);
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-top: 2px;
}

.coming-near {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--white);
  color: var(--khaki-dark);
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-top: 2px;
}