:root {
  color-scheme: light;
  --bg: #f6f3ee;
  --text: #161616;
  --muted: #5e5b56;
  --line: #d8d1c6;
  --accent: #0f766e;
  --accent-dark: #0b4f4a;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

.hero {
  min-height: 76vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(56px, 11vw, 132px);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
}

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

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

.actions .secondary {
  background: transparent;
  color: var(--accent-dark);
}

.section {
  padding: 48px 0 72px;
}

h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

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

article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

article h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

article p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 72vh;
    padding-top: 48px;
  }

  .intro {
    font-size: 18px;
  }

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