:root {
  --ink: #18372d;
  --muted: #5d7168;
  --leaf: #1f6b4c;
  --leaf-dark: #164d39;
  --mint: #edf7f1;
  --sage: #d7eadf;
  --paper: #ffffff;
  --line: #dfe9e3;
  --sun: #f2c66d;
  --clay: #c4875d;
  --shadow: 0 18px 45px rgba(24, 55, 45, 0.09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdfb;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--leaf-dark);
  color: #fff;
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 107, 76, 0.12);
  background: rgba(251, 253, 251, 0.94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--leaf-dark);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--leaf-dark);
  background: var(--mint);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 580px;
  display: grid;
  align-items: center;
  padding: 72px 0 44px;
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 234, 223, 0.95), transparent 30%),
    linear-gradient(180deg, #fbfdfb 0%, #edf7f1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.5rem, 4.9rem, 4.9rem);
}

h2 {
  font-size: clamp(1.8rem, 3rem, 3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--leaf);
  border-radius: 8px;
  color: #fff;
  background: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--leaf-dark);
}

.button.secondary {
  color: var(--leaf-dark);
  background: transparent;
}

.button.secondary:hover {
  color: #fff;
  background: var(--leaf-dark);
}

.hero-plant {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-plant img {
  width: min(360px, 90%);
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--mint);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
}

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(24, 55, 45, 0.06);
}

.card-body {
  padding: 22px;
}

.card-body p {
  margin-top: 10px;
  color: var(--muted);
}

.plant-art {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #edf7f1, #fff);
}

.plant-art img {
  width: 170px;
  height: 170px;
  object-fit: contain;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 0.85rem;
  font-weight: 700;
}

.page-hero {
  padding: 72px 0 42px;
  background: linear-gradient(180deg, #edf7f1, #fbfdfb);
}

.page-hero p {
  max-width: 700px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature {
  padding: 22px;
  border-left: 4px solid var(--leaf);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(24, 55, 45, 0.05);
}

.feature p {
  margin-top: 8px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-box {
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--leaf-dark);
}

.contact-box p {
  margin-top: 10px;
}

.contact-box a {
  color: #fff;
  font-weight: 800;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.detail {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .contact-panel,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 32px;
  }

  .hero-plant {
    min-height: 320px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .actions,
  .button {
    width: 100%;
  }
}
