:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #596579;
  --line: #dde6f0;
  --paper: #ffffff;
  --wash: #f5f8fb;
  --accent: #2f7e92;
  --accent-soft: #e6f3f6;
  --gold: #b08a45;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfdff 0%, var(--wash) 100%);
  color: var(--ink);
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 0.95rem;
}

.hero {
  padding: 44px 0 28px;
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 1.02;
  font-weight: 500;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.notice {
  margin: 28px 0 0;
  padding: 16px 18px;
  border: 1px solid #c6dde5;
  border-radius: 8px;
  background: var(--accent-soft);
  color: #244755;
}

.content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

p,
li {
  color: var(--muted);
}

ul,
ol {
  margin: 10px 0 0;
  padding-left: 1.35rem;
}

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

.footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

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