:root {
  --background: #f7f7f4;
  --surface: #ffffff;
  --text: #202124;
  --muted: #5f6368;
  --line: #deded8;
  --accent: #176b4d;
  --accent-soft: #e7f3ee;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
}

body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.65;
}

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

a:hover {
  text-decoration-thickness: 2px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: clamp(56px, 8vw, 84px);
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a {
  color: var(--muted);
  border-radius: 6px;
  padding: 7px 10px;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.2;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--text);
  background: var(--accent-soft);
}

.page-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 4vw, 40px);
}

.document {
  max-width: 760px;
}

.document h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.document h2 {
  margin: 42px 0 10px;
  padding-top: 4px;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.document p {
  margin: 0 0 18px;
}

.document ul {
  margin: 0 0 24px;
  padding-left: 24px;
}

.document li {
  margin: 6px 0;
}

.updated,
.eyebrow {
  color: var(--muted);
  font-size: 0.95rem;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.link-list {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.link-list a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
}

.link-list a:last-child {
  border-bottom: 1px solid var(--line);
}

.link-list span {
  color: var(--accent);
  font-weight: 700;
}

.link-list small {
  color: var(--muted);
  font-size: 0.95rem;
}

.email-link {
  font-weight: 700;
}

.site-footer {
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .brand img {
    width: 66px;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .site-header nav a {
    padding-left: 0;
  }

  .site-header nav a:hover,
  .site-header nav a[aria-current="page"] {
    padding-left: 10px;
  }
}
