@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500;600&display=swap');

:root {
  --green: #0b4d2b;
  --dark-green: #06351e;
  --gold: #c9a227;
  --cream: #f7f5ed;
  --white: #ffffff;
  --text: #1d2a22;
  --muted: #66736b;
  --border: #e5e8e2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6%;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
}

.logo {
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.logo span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 4px;
}

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

nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

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

.icons {
  color: var(--green);
  font-size: 19px;
  white-space: nowrap;
}

.hero {
  min-height: 570px;
  display: flex;
  align-items: center;
  padding: 80px 7%;
  background:
    linear-gradient(90deg, rgba(3,40,23,.90), rgba(3,40,23,.55), rgba(3,40,23,.18)),
    radial-gradient(circle at 80% 40%, #78945d, #183e29 45%, #09291a 100%);
  color: white;
}

.hero-content { max-width: 650px; }

.eyebrow {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 12px;
}

.hero h1, h2 {
  font-family: 'Playfair Display', serif;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  margin: 0 0 18px;
}

.hero p:not(.eyebrow) {
  max-width: 520px;
  color: #edf3ed;
}

.button {
  display: inline-block;
  margin: 18px 10px 0 0;
  padding: 12px 22px;
  background: var(--gold);
  color: #182015;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 4px;
}

.button.outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,.65);
}

.intro {
  text-align: center;
  max-width: 850px;
  margin: auto;
  padding: 85px 7%;
}

h2 {
  color: var(--green);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.intro p:not(.eyebrow), .section > p:not(.eyebrow), .contact p {
  color: var(--muted);
}

.section {
  padding: 75px 7%;
  max-width: 1250px;
  margin: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 30px 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(6,53,30,.10);
}

.card h3 {
  color: var(--green);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin: 12px 0 6px;
}

.card p {
  color: var(--muted);
  font-size: 13px;
}

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

.product { background: white; }

.product-image {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #eef1e9;
  color: #829080;
  font-size: 12px;
  letter-spacing: 1px;
}

.product strong {
  color: var(--green);
  font-size: 13px;
}

.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 75px 10%;
  background: var(--dark-green);
  color: white;
}

.why h2 { color: white; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-content: center;
}

.why-grid p {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  margin: 0;
}

.distributor {
  margin: 50px 7%;
  padding: 55px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 18px;
  background: var(--cream);
}

.distributor h2 { margin-bottom: 8px; }

.contact {
  text-align: center;
  padding-bottom: 100px;
}

footer {
  padding: 45px 7%;
  text-align: center;
  color: white;
  background: var(--dark-green);
  font-size: 12px;
}

footer strong {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

@media (max-width: 900px) {
  nav { gap: 12px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .header { padding: 14px 5%; }
  nav { display: none; }
  .logo { font-size: 18px; }
  .hero { min-height: 520px; padding: 65px 7%; }
  .hero h1 { font-size: 42px; }
  .cards, .products, .why-grid { grid-template-columns: 1fr; }
  .section, .intro { padding: 60px 6%; }
  .distributor { margin: 30px 5%; padding: 40px 7%; display: block; }
}
