* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --text: #171717;
  --muted: #5a5a5a;
  --line: #deded8;
  --accent: #1f4d3e;
}

html {
  scroll-behavior: smooth;
}

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

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

.narrow {
  width: min(760px, calc(100% - 40px));
}

.hero {
  padding: 110px 0 95px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  max-width: 900px;
}

.tagline {
  margin: 28px 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 600;
}

.intro {
  max-width: 720px;
  font-size: 1.18rem;
  color: var(--muted);
}

.status {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--bg);
}

section {
  padding: 72px 0;
}

section.alt {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
}

p {
  margin: 0 0 18px;
}

.contact {
  margin-top: 28px;
  font-weight: 600;
}

a {
  color: var(--accent);
}

footer {
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

footer p {
  margin: 4px 0;
}

@media (max-width: 640px) {
  .hero {
    padding: 74px 0 64px;
  }

  section {
    padding: 52px 0;
  }
}
