:root {
  --bg: #f7f3eb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #fffaf2;
  --text: #1f2a1f;
  --muted: #5b6958;
  --accent: #2f6b3a;
  --accent-dark: #1f4d29;
  --border: rgba(47, 107, 58, 0.14);
  --shadow: 0 18px 45px rgba(31, 42, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 202, 116, 0.35), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 32px 20px;
  display: grid;
  place-items: center;
}

.hero__content {
  width: min(760px, 100%);
  padding: 40px 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

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

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

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

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.subtitle,
.description,
.card p,
.contact p,
.footer p {
  line-height: 1.7;
}

.subtitle {
  margin: 14px 0 8px;
  font-size: 1.1rem;
  color: var(--accent-dark);
  font-weight: 500;
}

.description {
  margin: 0 0 26px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button--secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--border);
}

.button--secondary:hover {
  background: rgba(47, 107, 58, 0.08);
  transform: translateY(-2px);
}

main {
  padding: 0 20px 40px;
}

.section {
  width: min(1100px, 100%);
  margin: 0 auto 24px;
  padding: 34px 0;
}

.section--accent {
  padding: 34px 28px;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section__title {
  margin-bottom: 24px;
}

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

.card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.contact {
  display: grid;
  gap: 10px;
}

.footer {
  padding: 8px 20px 28px;
  text-align: center;
  color: var(--muted);
}

.footer__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.84rem;
  color: #7c8578;
  text-decoration: none;
  opacity: 0.82;
}

.footer__link:hover {
  color: var(--accent-dark);
  opacity: 1;
}

@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  .hero__content,
  .section--accent {
    padding: 28px 22px;
    border-radius: 22px;
  }
}
