:root {
  --paper: #f4ecd8;
  --paper-deep: #eadfca;
  --ink: #1f1a15;
  --muted: #615648;
  --green: #244d3d;
  --walnut: #6b4a2f;
  --brass: #a47b38;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at 20% 10%, rgba(36, 77, 61, 0.08), transparent 28rem),
    repeating-linear-gradient(0deg, rgba(31, 26, 21, 0.035) 0, rgba(31, 26, 21, 0.035) 1px, transparent 1px, transparent 32px),
    var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
}

.landing {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 28px;
  padding: 48px 0;
}

.hero {
  border: 2px solid var(--walnut);
  background: rgba(244, 236, 216, 0.84);
  padding: clamp(28px, 7vw, 72px);
  box-shadow: 10px 10px 0 rgba(107, 74, 47, 0.12);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font: 700 0.8rem/1.2 ui-monospace, "Courier New", monospace;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 14vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.lede {
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  max-width: 720px;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 720px;
}

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

.actions a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--walnut);
  background: #fffaf0;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 700;
}

.actions a:first-child {
  background: var(--green);
  border-color: var(--green);
  color: #fffaf0;
}

.about {
  border-top: 3px double var(--walnut);
  padding-top: 22px;
}

.about h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

@media (max-width: 560px) {
  .actions a {
    width: 100%;
  }
}
