:root {
  color-scheme: light;
  --ink: #17201e;
  --muted: #596461;
  --paper: #f7f4ed;
  --surface: #fffdf8;
  --line: #ddd8cc;
  --accent: #b94e36;
  --accent-dark: #863321;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

body {
  margin: 0;
}

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

a:hover {
  color: var(--accent);
}

a:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid rgb(185 78 54 / 30%);
  outline-offset: 4px;
}

.page {
  margin: 0 auto;
  max-width: 780px;
  padding: clamp(2rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 3rem) 6rem;
}

.page--home {
  align-items: center;
  display: flex;
  min-height: 100vh;
}

.intro {
  max-width: 670px;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.75rem, 9vw, 5rem);
  line-height: 0.98;
  margin: 0;
}

h2 {
  font-size: 1.45rem;
  line-height: 1.25;
  margin: 0 0 0.65rem;
}

.lede {
  color: #34403d;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 4vw, 1.65rem);
  line-height: 1.45;
  margin: 1.75rem 0 0;
}

.byline,
.updated {
  color: var(--muted);
}

.byline {
  margin: 1rem 0 0;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2.25rem;
}

.button {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 0.72rem 1.2rem;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
  color: #fff;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 650;
}

.back-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 650;
  margin-bottom: 3rem;
  text-decoration: none;
}

.notice__header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2.5rem;
}

.notice__header h1 {
  font-size: clamp(2.6rem, 8vw, 4.6rem);
}

.updated {
  font-size: 0.82rem;
  margin: 1.5rem 0 0;
}

.notice__body > section {
  margin-top: 2.75rem;
}

.notice__body p {
  margin: 0.65rem 0 0;
}

.notice__body ul {
  margin: 0.8rem 0 1rem;
  padding-left: 1.35rem;
}

.notice__body li + li {
  margin-top: 0.35rem;
}

@media (max-width: 480px) {
  html {
    font-size: 16px;
  }

  .page {
    padding-bottom: 4rem;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
