:root {
  --bg: #f5f4f0;
  --surface: #eceae4;
  --text: #171717;
  --muted: #62615d;
  --line: #d8d5ce;
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

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

a {
  color: inherit;
  text-underline-offset: 3px;
}

a:hover { opacity: .68; }

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

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-decoration: none;
}

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

.nav a { text-decoration: none; }

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(52px, 8vw, 96px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 650;
}

.hero-tagline {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.22;
  letter-spacing: -.025em;
  font-weight: 450;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section {
  padding: 86px 0;
  border-bottom: 1px solid var(--line);
}

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

.section h2 {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.section p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  letter-spacing: -.025em;
}

.contact-link {
  display: inline-block;
  margin-top: 26px;
  font-size: 18px;
  font-weight: 600;
}

.legal {
  padding: 74px 0 100px;
}

.legal-wrap {
  max-width: 780px;
}

.legal h1 {
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.02;
}

.legal-meta {
  margin: 20px 0 52px;
  color: var(--muted);
  font-size: 14px;
}

.legal h2 {
  margin: 42px 0 12px;
  font-size: 20px;
  letter-spacing: -.015em;
}

.legal p,
.legal li {
  color: #343330;
  font-size: 16px;
}

.legal ul {
  padding-left: 20px;
}

.site-footer {
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a { text-decoration: none; }

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }

  .header-inner { min-height: 68px; }
  .nav { gap: 14px; font-size: 13px; }

  .hero { padding: 78px 0 68px; }
  .hero-tagline { margin-top: 26px; }
  .hero-copy { font-size: 16px; }

  .section { padding: 62px 0; }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .section p { font-size: 22px; }

  .legal { padding: 54px 0 78px; }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
