:root {
  color-scheme: light;
  --parchment: #f3e6c8;
  --paper: #fff9ea;
  --ink: #2c2118;
  --muted: #675546;
  --leather: #3d241c;
  --burgundy: #6e2f38;
  --gold: #a87c3e;
  --gold-light: #c8a569;
  --border: #b99a6a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--parchment);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

main {
  width: min(760px, calc(100% - 32px));
  margin: 32px auto 64px;
}

header {
  padding: 36px 24px;
  color: #fbf4e5;
  background: var(--leather);
  border: 3px solid var(--gold);
  border-radius: 16px;
  text-align: center;
}

header p {
  margin: 8px 0 0;
  color: var(--parchment);
}

h1,
h2 {
  line-height: 1.25;
}

h1 {
  margin: 4px 0;
  font-size: clamp(2rem, 6vw, 3rem);
}

h2 {
  margin-top: 0;
  color: #4d2027;
  font-size: 1.25rem;
}

section {
  margin-top: 16px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
}

a {
  color: var(--burgundy);
  font-weight: 700;
}

.ornament {
  color: var(--gold-light);
  letter-spacing: 0.15em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-block;
  padding: 11px 16px;
  color: #fff9ea;
  background: var(--burgundy);
  border-radius: 8px;
  text-decoration: none;
}

footer {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}
