:root {
  --bg-1: #edeae3;
  --bg-2: #d9d7d2;
  --text: #111111;
  --muted: rgba(17, 17, 17, .72);
  --sans: "Source Sans 3", sans-serif;
  --serif: "Alegreya", Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  min-height: 100vh;
  color: var(--text);
  font-family: var(--serif);
  background:
    radial-gradient(1200px 520px at 90% -8%, rgba(255,255,255,.62), transparent 62%),
    radial-gradient(840px 380px at -10% 0%, rgba(255,255,255,.42), transparent 58%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px) clamp(16px, 2vw, 28px) 60px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  line-height: 1.08;
}

.back-link {
  font-family: var(--sans);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

section {
  margin-bottom: 20px;
}

h2 {
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}

p,
li,
address {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

ul {
  padding-left: 18px;
}

.note {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--muted);
}

.footer-links {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  font-family: var(--sans);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
