:root {
  color-scheme: dark;
  --background: #050505;
  --surface: #101010;
  --text: #f4f0e8;
  --muted: #aaa59d;
  --line: #34312d;
  --accent: #c9a96e;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

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

header,
footer {
  border-color: var(--line);
  border-style: solid;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem clamp(1rem, 4vw, 3rem);
  border-width: 0 0 1px;
}

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

.back-link,
.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

main {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin: 0 0 1.5rem;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

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

.effective-date {
  margin-bottom: 3rem;
}

.summary {
  margin: 0 0 3rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--accent);
  background: var(--surface);
}

.summary strong {
  color: var(--text);
}

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

ul {
  margin: 1rem 0 0;
  padding-left: 1.4rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.action {
  display: inline-block;
  padding: 0.8rem 1rem;
  border: 1px solid var(--accent);
  text-decoration: none;
}

footer {
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-width: 1px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
}
