* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #15110f;
  --muted: #615c57;
  --paper: #fbf7ef;
  --line: #d8cfc2;
  --red: #c9362c;
  --blue: #164b8f;
  --gold: #b97818;
}

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

a {
  color: inherit;
}

.page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.bar,
.wrap,
.footer {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

.bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bar a {
  color: var(--muted);
  text-decoration: none;
}

.hero {
  padding: clamp(52px, 10vw, 108px) 0 clamp(44px, 8vw, 84px);
  border-top: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  max-width: 870px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.38fr);
  gap: clamp(32px, 7vw, 96px);
  padding-bottom: clamp(56px, 10vw, 108px);
}

.content h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
}

.content p,
.content li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.content ul {
  margin: 0;
  padding-left: 20px;
}

.aside {
  align-self: start;
  padding-top: 4px;
  border-top: 3px solid var(--ink);
}

.aside strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.resource-list a {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.footer {
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .content {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 5rem);
  }
}
