:root {
  color-scheme: light;
  --ink: #201a2b;
  --muted: #625a70;
  --line: #ded8e8;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --accent: #735c9f;
  --accent-strong: #42306f;
  --gold: #a77b32;
  --max: 920px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

a {
  color: var(--accent-strong);
  text-decoration-color: rgba(66, 48, 111, 0.35);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: var(--gold);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 20px 24px;
}

.brand {
  color: var(--accent-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.hero,
.content,
.site-footer {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  padding-bottom: 36px;
  padding-top: 58px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin: 12px 0 18px;
}

h2 {
  border-top: 1px solid var(--line);
  font-size: 1.55rem;
  margin: 36px 0 12px;
  padding-top: 28px;
}

h3 {
  font-size: 1.12rem;
  margin: 24px 0 8px;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

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

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.content {
  padding-bottom: 54px;
}

.notice {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  margin: 22px 0 34px;
  padding: 16px 18px;
}

.link-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.link-list a {
  background: var(--surface);
  border: 1px solid var(--line);
  display: block;
  font-weight: 760;
  padding: 18px;
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  padding-bottom: 30px;
  padding-top: 24px;
}

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

  .hero {
    padding-top: 38px;
  }
}
