:root {
  color-scheme: light;
  --gold: #c8972d;
  --gold-strong: #8a6419;
  --ink: #171717;
  --muted: #616161;
  --line: #e8e2d6;
  --paper: #fffaf0;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  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;
}

a {
  color: var(--gold-strong);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 56px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f4ca59, #fff1b5);
  color: #17130a;
  font-weight: 950;
}

.brand-name {
  font-size: 22px;
  font-weight: 950;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  padding: 44px 0 18px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.updated {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.content {
  display: grid;
  gap: 18px;
}

.section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(22px, 5vw, 34px);
}

h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

p {
  margin: 0 0 12px;
}

ul,
ol {
  margin: 0 0 12px 20px;
  padding: 0;
}

li {
  margin: 6px 0;
}

.notice {
  border-left: 4px solid var(--gold);
  background: #fff7dc;
  padding: 14px 16px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #17130a;
  color: #fffaf0;
  padding: 10px 16px;
  font-weight: 900;
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
