:root {
  --bg: #fafaf9;
  --fg: #1c1917;
  --muted: #57534e;
  --line: #e7e5e4;
  --accent: #0f766e;
  --max: 880px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header {
  border-bottom: 1px solid var(--line);
  background: rgba(250,250,249,.9);
  backdrop-filter: blur(6px);
  position: sticky; top: 0;
}
header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 600; letter-spacing: .01em; color: var(--fg); }
.brand span { color: var(--muted); font-weight: 400; }
nav a { color: var(--muted); margin-left: 24px; font-size: 15px; }
nav a:hover { color: var(--fg); text-decoration: none; }

.hero { padding: 96px 0 72px; }
.hero h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.15; margin: 0 0 20px; font-weight: 600; letter-spacing: -.01em; }
.hero p { font-size: 20px; color: var(--muted); max-width: 620px; margin: 0; }

section { padding: 56px 0; border-top: 1px solid var(--line); }
section h2 { font-size: 22px; margin: 0 0 16px; font-weight: 600; }
section p { margin: 0 0 14px; max-width: 680px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 8px; }
.grid h3 { font-size: 17px; margin: 0 0 6px; font-weight: 600; }
.grid p { color: var(--muted); font-size: 15px; margin: 0; }

address { font-style: normal; line-height: 1.8; }

footer { border-top: 1px solid var(--line); padding: 28px 0; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
footer a { color: var(--muted); margin-right: 18px; }

.legal { padding: 56px 0 72px; }
.legal h1 { font-size: 32px; margin: 0 0 28px; font-weight: 600; }
.legal h2 { font-size: 20px; margin: 36px 0 10px; font-weight: 600; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; font-weight: 600; }
.legal p, .legal li { max-width: 720px; }
.legal ul { padding-left: 22px; }

@media (max-width: 600px) {
  .hero { padding: 64px 0 48px; }
  nav a { margin-left: 16px; }
}
