:root {
  --bg: #f6f0e6;
  --text: #191714;
  --muted: #6f675d;
  --line: #d8ccbc;
  --accent: #d96b2b;
}

* { box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none;
}

header, main, footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 24px;
}

nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  min-height: 68vh;
  display: grid;
  align-content: center;
  padding: 80px 0;
}

.eyebrow, .section-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1 {
  max-width: 900px;
  margin: 16px 0;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.button {
  width: fit-content;
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

h2 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.split p:last-child, .cta p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

article:last-child {
  border-right: 0;
}

article p {
  color: var(--accent);
  font-weight: 800;
}

h3 {
  margin-top: 70px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

article span {
  color: var(--muted);
  line-height: 1.6;
}

.cta {
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  header, footer {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .split, .cards {
    grid-template-columns: 1fr;
  }

  article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  h3 {
    margin-top: 40px;
  }
}