:root {
  --ink: #17201c;
  --muted: #5f6d65;
  --paper: #f7f5ef;
  --card: #fffdf8;
  --accent: #315f4a;
  --line: #dcded8;
}

* { box-sizing: border-box; }

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

a { color: inherit; }

.site-header, footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header { padding: 28px 0; border-bottom: 1px solid var(--line); }
.brand { font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; text-decoration: none; }
nav, footer div { display: flex; gap: 22px; }
nav a, footer a { color: var(--muted); font-size: .92rem; text-decoration: none; }
nav a:hover, footer a:hover { color: var(--accent); }

main { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hero { min-height: 66vh; display: grid; align-content: center; max-width: 820px; padding: 80px 0; }
.eyebrow, .section-label { color: var(--accent); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .74rem; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; line-height: 1.06; margin: 12px 0 24px; }
h1 { font-size: clamp(3.2rem, 8vw, 7.2rem); letter-spacing: -.05em; }
h2 { font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.035em; }
.intro { max-width: 680px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.about { background: var(--card); border: 1px solid var(--line); padding: clamp(30px, 6vw, 72px); margin-bottom: 80px; }
.about p:last-child { max-width: 720px; color: var(--muted); font-size: 1.08rem; }

.legal { max-width: 780px; padding: 72px 0 100px; }
.legal h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.legal h2 { font-size: 1.5rem; margin-top: 40px; }
.legal p, .legal li { color: var(--muted); }

footer { border-top: 1px solid var(--line); padding: 28px 0 44px; color: var(--muted); font-size: .9rem; }

@media (max-width: 680px) {
  .site-header, footer { align-items: flex-start; flex-direction: column; }
  nav, footer div { flex-wrap: wrap; gap: 12px 18px; }
  .hero { min-height: 58vh; }
}
