:root {
  color-scheme: light;
  --paper: #f2f5f1;
  --ink: #1c211f;
  --muted: #59645f;
  --line: #cbd7d0;
  --green: #446455;
  --red: #9c463f;
  --blue: #315f7a;
  --gold: #b8862d;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(28, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(28, 33, 31, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(28, 33, 31, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker,
.world-map figcaption {
  margin: 0;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.eyebrow a:hover,
.eyebrow a:focus-visible {
  color: var(--blue);
  outline: none;
}

h1,
h2,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-size: 6.75rem;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 10px 0 16px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

.lede,
.now p,
.texture p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.28rem;
}

.world-map {
  margin: 0;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.world-map img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.world-map figcaption {
  margin-top: 16px;
  color: var(--muted);
  text-align: center;
}

.now,
.texture,
.exits {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.now h2 {
  max-width: 840px;
}

.texture h2 {
  max-width: 920px;
}

.link-list {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.link-list a:hover,
.link-list a:focus-visible {
  background: var(--surface);
  border-color: var(--green);
  transform: translateY(-1px);
  outline: none;
}

.link-list span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.link-list span:last-child {
  min-width: 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 24px, 680px);
    padding: 24px 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 0 48px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .lede,
  .now p,
  .texture p {
    font-size: 1.12rem;
  }

  .world-map {
    max-width: 440px;
  }

  .now,
  .texture,
  .exits {
    padding: 52px 0;
  }

  .link-list a {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2.15rem;
  }
}
