:root {
  --bg: #f7f4ef;
  --ink: #14201a;
  --muted: #5c6b63;
  --line: rgba(20, 32, 26, 0.12);
  --accent: #0f6b4c;
  --surface: #fffdf9;
  --max: 42rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(15, 107, 76, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(20, 32, 26, 0.06), transparent 50%),
    var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  text-decoration: none;
}

.site-header,
.site-footer,
.home,
.legal {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 2rem;
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1.25rem;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.home {
  padding: 3rem 0 5rem;
}

.home h1,
.legal h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.lede {
  margin: 0;
  max-width: 28rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 600;
}

.contact {
  margin-top: 1.75rem;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
}

.legal {
  padding-bottom: 4rem;
}

.meta {
  margin: 0 0 2rem;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  color: #243229;
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 0.55rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--muted);
}
