:root {
  --green: #2F4F46;
  --blue: #465C7A;
  --copper: #B87333;
  --charcoal: #2B2B2B;
  --cream: #F7F6F2;
  --line: #D9D4C8;
  --muted: #66706A;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, Manrope, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.55;
}

a { color: inherit; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(18px, 5vw, 70px);
  background: rgba(247, 246, 242, .92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  color: var(--green);
}

.brand img {
  width: 210px;
  max-height: 56px;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  font-size: 24px;
  letter-spacing: -1px;
}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
  color: var(--green);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 17px;
  text-decoration: none;
  font-weight: 900;
}

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

.button.secondary {
  border: 1px solid var(--green);
  color: var(--green);
  background: white;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 8vw, 110px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 15% 10%, rgba(184, 115, 51, .18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, var(--cream) 58%, #edf1ec 100%);
}

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

h1, h2, h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 8vw, 86px);
  letter-spacing: -3px;
  color: var(--green);
  max-width: 880px;
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -2px;
  color: var(--green);
}

h3 {
  font-size: 23px;
  color: var(--blue);
}

.lede {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 23px);
  color: var(--muted);
  margin: 24px 0 0;
}

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

.hero-card {
  background: var(--green);
  color: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 22px 60px rgba(47, 79, 70, .24);
}

.hero-card h2 {
  color: white;
  font-size: 32px;
  letter-spacing: -1px;
}

.hero-card p {
  color: rgba(255,255,255,.86);
}

.hero-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
}

.section {
  padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

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

.product-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,.045);
}

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

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 70px);
  background: var(--green);
  color: white;
}

.split-section h2 {
  color: white;
}

.split-section p:not(.eyebrow) {
  font-size: 20px;
  color: rgba(255,255,255,.84);
}

.mission {
  padding: clamp(50px, 7vw, 100px) clamp(18px, 5vw, 70px);
  background: white;
  text-align: center;
}

.mission h2 {
  max-width: 1000px;
  margin: 0 auto;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  padding: clamp(50px, 7vw, 90px) clamp(18px, 5vw, 70px);
}

.contact p {
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  background: var(--blue);
  color: white;
  border-radius: 24px;
  padding: 28px;
}

.contact-card h3 {
  color: white;
}

.contact-card p,
.contact-card a {
  color: rgba(255,255,255,.86);
}

footer {
  padding: 24px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

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

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

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

  .brand img {
    width: 180px;
  }
}
