:root {
  color-scheme: light;
  --bg: #fbfaf6;
  --paper: #ffffff;
  --ink: #1b1713;
  --muted: #625f59;
  --line: #dfd5c2;
  --green: #157f5a;
  --gold: #b58b2b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: linear-gradient(180deg, #fffaf4, var(--bg));
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

.topbar,
main,
footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

nav a { text-decoration: none; }

.hero {
  max-width: 900px;
  padding: 56px 0 30px;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 12px;
}

p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.intro {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.band {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0;
}

.band span,
.section,
.note {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.band span {
  color: #2c332e;
  font-weight: 800;
  min-height: 78px;
  padding: 16px;
}

.section {
  margin: 18px 0;
  padding: 24px;
}

.section p + p { margin-top: 12px; }

.note {
  margin: 28px 0 64px;
  padding: 20px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 28px 0 48px;
}

footer a { color: var(--ink); font-weight: 800; }

@media (max-width: 760px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .band { grid-template-columns: 1fr; }
}
