* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f5f2;
  --text: #151515;
  --muted: #666761;
  --line: #d9d9d3;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.hero {
  padding: 32px 0 88px;
  border-bottom: 1px solid var(--line);
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand {
  display: inline-flex;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 220px;
  max-width: min(56vw, 220px);
  height: auto;
}

.hero-content {
  max-width: 860px;
  margin-top: 44px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 600;
}

.intro {
  max-width: 680px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.about,
.services {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.body-copy {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
}

.body-copy p:first-child {
  margin-top: 39px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.45);
}

.card span {
  color: var(--muted);
  font-size: 13px;
}

.card h3 {
  margin: 74px 0 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

footer {
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

  .hero {
    padding: 24px 0 64px;
  }

  .brand-logo {
    width: 170px;
    max-width: 70vw;
  }

  .hero-content {
    margin-top: 32px;
  }

  .grid,
  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .body-copy p:first-child {
    margin-top: 12px;
  }

  .about,
  .services {
    padding: 68px 0;
  }

  .card {
    min-height: 220px;
  }

  .card h3 {
    margin-top: 52px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 4px;
  }
}
