* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f5f0;
  color: #171717;
  line-height: 1.6;
}

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

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #555;
}

nav a:hover,
.contact-links a:hover {
  color: #000;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 112px 24px 128px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 650;
}

.hero-copy {
  max-width: 650px;
  margin: 36px 0 0;
  font-size: 22px;
  line-height: 1.45;
  color: #424242;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #171717;
  border-radius: 999px;
  background: #171717;
  color: #fff;
  font-size: 15px;
  transition: transform 150ms ease, opacity 150ms ease;
}

.button.secondary {
  background: transparent;
  color: #171717;
}

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

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 76px 24px;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
}

.section-content h2 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 620;
}

.section-content p {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: 19px;
  color: #444;
}

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

.cards article {
  padding: 28px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.38);
}

.cards h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.cards p {
  margin: 0;
  font-size: 16px;
}

.contact-section {
  padding-bottom: 104px;
}

.contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-links a {
  border-bottom: 1px solid rgba(23, 23, 23, 0.35);
}

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px 48px;
  color: #777;
  font-size: 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.12);
}

footer p {
  margin: 0;
}

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

  nav {
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 88px;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  .hero-copy {
    font-size: 19px;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 56px 24px;
  }

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