﻿:root {
  --bg: #eef3e8;
  --surface: #f9fbf6;
  --text: #1f2d1b;
  --muted: #4f5f49;
  --primary: #2f6f2a;
  --primary-strong: #21501e;
  --accent: #c57f1b;
  --line: #d5dfcb;
  --shadow: 0 12px 35px rgba(33, 80, 30, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 5% 5%, #f6faef 0%, transparent 40%),
    radial-gradient(circle at 95% 15%, #ecf3df 0%, transparent 45%),
    var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.bg-shape {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}

.bg-shape-1 {
  top: 12%;
  left: -8%;
  width: 260px;
  height: 260px;
  border-radius: 35% 65% 50% 50%;
  background: linear-gradient(120deg, rgba(47, 111, 42, 0.2), rgba(197, 127, 27, 0.2));
}

.bg-shape-2 {
  right: -8%;
  bottom: 10%;
  width: 340px;
  height: 340px;
  border-radius: 50% 30% 60% 40%;
  background: linear-gradient(160deg, rgba(33, 80, 30, 0.2), rgba(47, 111, 42, 0.15));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(249, 251, 246, 0.86);
  border-bottom: 1px solid var(--line);
}

.topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
}

.brand-logo {
  width: clamp(180px, 20vw, 270px);
  height: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.menu a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 0.8rem;
  padding: 0.85rem 1.2rem;
  background: linear-gradient(145deg, var(--primary), var(--primary-strong));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(33, 80, 30, 0.22);
}

.btn-sm {
  padding: 0.6rem 0.95rem;
  border-radius: 0.65rem;
}

.btn-ghost {
  background: transparent;
  color: var(--primary-strong);
  border: 1px solid var(--primary-strong);
  box-shadow: none;
}

.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  box-shadow: none;
}

.hero {
  padding: 4.5rem 0 3.2rem;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin: 1.3rem 0 1.7rem;
}

.hero-metrics {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-metrics li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.7rem 0.9rem;
  min-width: 155px;
}

.hero-metrics strong {
  display: block;
  color: var(--primary-strong);
  font-size: 1.05rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media img {
  border-radius: 1.2rem;
  border: 2px solid #e5ebdc;
  box-shadow: var(--shadow);
  min-height: 460px;
  object-fit: cover;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card-accent {
  background: linear-gradient(180deg, #f9fbf7 0%, #f2f8eb 100%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.image-stack {
  position: relative;
  padding-right: 3.5rem;
}

.img-main {
  border-radius: 1rem;
  border: 2px solid #e5ebdc;
  min-height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.img-float {
  position: absolute;
  right: 0;
  bottom: -1.6rem;
  width: min(52%, 260px);
  border-radius: 0.9rem;
  border: 2px solid #eff4e8;
  box-shadow: var(--shadow);
}

.cta {
  padding: 2rem 0 5rem;
}

.cta-box {
  background: linear-gradient(145deg, #295c24 0%, #20461d 58%, #7f5312 120%);
  color: #fff;
  border-radius: 1.3rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 18px 42px rgba(32, 70, 29, 0.35);
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
}

.cta .eyebrow {
  color: #f8d39a;
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--line);
  background: #f7faef;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-media {
    order: -1;
  }

  .hero-media img,
  .img-main {
    min-height: 360px;
  }

  .image-stack {
    padding-right: 0;
    padding-bottom: 1.2rem;
  }

  .img-float {
    right: 0.8rem;
    bottom: 0;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: clamp(150px, 42vw, 205px);
  }

  .menu {
    gap: 0.75rem;
    font-size: 0.93rem;
  }

  .menu a:not(.btn) {
    display: none;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .cards-3,
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .footer-content {
    flex-direction: column;
  }
}
