:root {
  color-scheme: light;
  --bg: #f7f4ec;
  --surface: #ffffff;
  --text: #1f241f;
  --muted: #5d645d;
  --accent: #3d6b4f;
  --accent-dark: #2d5338;
  --border: #e3dfd5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #1d2a21 0%, #3d6b4f 100%);
  color: white;
}

.hero__content {
  max-width: 760px;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 1rem;
}

h1,
h2 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 0.75rem;
}

.hero__text {
  font-size: 1.06rem;
  max-width: 680px;
  opacity: 0.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: white;
  color: var(--accent-dark);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
}

.section {
  padding: 4rem 1.5rem;
}

.section__content {
  max-width: 760px;
  margin: 0 auto;
}

.section--accent {
  background: #eef5ee;
}

.section--contact {
  background: var(--surface);
}

.link-list {
  padding-left: 1.2rem;
}

.link-list a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
