:root {
  --ink: #100e0c;
  --paper: #efe6d6;
  --mute: #b8ab95;
  --rust: #d4783a;
  --line: rgba(239, 230, 214, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(212, 120, 58, 0.12), transparent 50%),
    var(--ink);
  color: var(--paper);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
}

.frame {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.mark svg {
  display: block;
}

.mark-name {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.host {
  margin: 0;
  color: var(--mute);
  font-family: "IBM Plex Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
  gap: 48px;
  align-items: end;
  padding: 72px 0 56px;
}

h1 {
  margin: 0;
  font-size: clamp(64px, 12vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.rule {
  width: 72px;
  height: 3px;
  margin: 28px 0 22px;
  background: var(--rust);
}

.lede {
  max-width: 28ch;
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.aside {
  margin: 0;
  padding-bottom: 10px;
  color: var(--mute);
  font-size: 16px;
  line-height: 1.55;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.facts div {
  padding: 22px 20px 0 0;
}

.facts h2 {
  margin: 0 0 8px;
  color: var(--rust);
  font-family: "IBM Plex Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.facts p {
  margin: 0;
  max-width: 28ch;
  color: var(--paper);
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .frame {
    width: calc(100% - 32px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 40px;
  }

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

  .facts div {
    padding: 20px 0 0;
  }

  .facts div + div {
    border-top: 1px solid var(--line);
    margin-top: 18px;
    padding-top: 18px;
  }
}
