:root {
  color-scheme: light;
  --bg: #f7f8f6;
  --text: #202522;
  --muted: #5e6861;
  --line: #d7ddd7;
  --panel: #ffffff;
  --accent: #346f5b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 58vh;
  display: flex;
  align-items: end;
  padding: 64px clamp(20px, 6vw, 88px);
  background:
    linear-gradient(rgba(13, 31, 24, 0.18), rgba(247, 248, 246, 0.84)),
    url("/assets/hero-workspace.png") center / cover no-repeat;
}

.hero-copy {
  max-width: 720px;
}

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

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 750;
}

.hero p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

article {
  min-height: 220px;
  padding: 32px clamp(20px, 4vw, 48px);
  background: var(--panel);
}

h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

article p {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero {
    min-height: 56vh;
    padding-top: 48px;
  }

  .content {
    grid-template-columns: 1fr;
  }

  article {
    min-height: auto;
  }
}
