*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --leaf: #1f7a4c;
  --leaf-dark: #145c38;
  --lime: #9fd356;
  --cream: #fff9f0;
  --sun: #ffb703;
  --ink: #1a2e24;
  --muted: #5a6b62;
  --line: #dce8df;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .brand strong, .phone, .foot-brand {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.strip {
  background: var(--leaf-dark);
  color: #d4eadc;
  font-size: 0.76rem;
}

.strip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.strip a {
  color: var(--lime);
  font-weight: 700;
}

.nav {
  background: var(--white);
  border-bottom: 2px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-dot {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--leaf), var(--lime));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.15rem;
  color: var(--leaf-dark);
}

.brand small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.nav nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 600;
  color: var(--leaf-dark);
}

.nav nav a:hover { color: var(--sun); }

.hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(159, 211, 86, 0.35), transparent 45%),
    linear-gradient(160deg, #e8f5ec 0%, var(--cream) 55%);
}

.chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leaf-dark);
  margin-bottom: 0.85rem;
}

.chip.small {
  font-size: 0.68rem;
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0.85rem;
}

.hero h1 span { color: var(--leaf); }

.lead {
  max-width: 34rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.btn.main {
  background: var(--leaf);
  color: var(--white);
}

.btn.main:hover { background: var(--leaf-dark); }

.btn.alt {
  background: var(--white);
  border: 2px solid var(--leaf);
  color: var(--leaf-dark);
}

.section { padding: 3.25rem 0; }
.section.soft { background: var(--white); }

.sec-title { margin-bottom: 1.5rem; }

.sec-title h2, .about h2, .contact h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(31, 122, 76, 0.06);
}

.section.soft .cards article { background: var(--cream); }

.cards h3 {
  font-size: 1.05rem;
  color: var(--leaf-dark);
  margin-bottom: 0.35rem;
}

.cards p {
  font-size: 0.92rem;
  color: var(--muted);
}

.facts {
  background: var(--leaf);
  color: var(--white);
  padding: 1.25rem 0;
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.facts strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
}

.facts span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about > div > p:not(.chip) {
  color: var(--muted);
  margin-top: 0.75rem;
}

.info {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  background: var(--cream);
}

.info h3 {
  font-size: 1rem;
  color: var(--leaf-dark);
  margin-bottom: 0.65rem;
}

.info dl div {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.info dl div:last-child { border-bottom: none; }

.info dt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.info dd { font-size: 0.9rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.phone {
  display: block;
  font-size: 1.65rem;
  color: var(--leaf-dark);
  margin: 0.35rem 0;
}

.phone.secondary { font-size: 1.35rem; color: var(--leaf); }

.email {
  display: block;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
  color: var(--muted);
}

.email:hover { color: var(--leaf); }

.address { color: var(--muted); line-height: 1.7; }

.box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem;
}

.box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--leaf-dark);
}

.box p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.foot {
  background: var(--ink);
  color: #b8c9be;
  padding: 2rem 0 1rem;
}

.foot-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.foot-brand {
  font-size: 1.25rem;
  color: var(--lime);
  margin-bottom: 0.35rem;
}

.foot h4 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.foot-end {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

@media (max-width: 800px) {
  .nav nav { display: none; }
  .about, .contact-grid, .foot-cols, .facts-row {
    grid-template-columns: 1fr;
  }
}
