:root {
  color-scheme: light;
  --cream: #f7f1e6;
  --paper: #fffaf0;
  --green: #082c22;
  --gold: #d7a84f;
  --ink: #1f1a14;
  --muted: #6b5d4e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

header,
main,
footer {
  width: min(100% - 2rem, 860px);
  margin-inline: auto;
}

header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-block: 1rem;
}

header img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

header a {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

main {
  border: 1px solid rgba(31, 26, 20, 0.16);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: 0 18px 48px rgba(31, 26, 20, 0.12);
}

h1,
h2 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  margin-top: 0;
  font-size: clamp(2.35rem, 7vw, 4rem);
}

h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

a {
  color: var(--green);
}

.eyebrow {
  color: #a87320;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 1.1rem;
  font-weight: 900;
  text-decoration: none;
}

footer {
  padding-block: 1.5rem 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

