
:root {
  --bg: #f3f6f0;
  --card: #ffffff;
  --text: #243126;
  --muted: #5b6a5e;
  --line: #d8e1d4;
  --accent: #2f6d4b;
  --accent-dark: #24563b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, #f8fbf6 0%, var(--bg) 55%);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 40px auto 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(38, 56, 40, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
}

.hero-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 42ch;
}

.actions {
  margin-top: 28px;
}

.button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: white;
}

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

.hero-art {
  min-height: 420px;
  background: linear-gradient(180deg, #eef6eb 0%, #e5efe0 100%);
}

.hero-art svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer {
  margin: auto 0 0;
  padding: 20px 16px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

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

  .hero-text {
    padding: 40px 28px 28px;
  }

  .hero-art {
    min-height: 300px;
  }
}
