:root {
  --paper: #faf7f0;
  --ink: #1a1a1a;
  --border: #8b6f47;
  --border-inner: #d4a574;
  --title-band: #e8d5b7;
  --green: #2d5a27;
  --stamp: #8b3a32;
  --muted: #6b5d4a;
  --cyclamen: #c2186f;
  --measure: 34rem;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 16px;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 Georgia, "Iowan Old Style", "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 40px 0 64px;
}

/* Poster-style masthead: double rule echoes the in-game VintageFrame. */
.masthead {
  border: 2px solid var(--border);
  border-radius: 3px;
  background: var(--title-band);
  box-shadow: inset 0 0 0 4px var(--paper), inset 0 0 0 6px var(--border-inner);
  padding: 28px clamp(10px, 4vw, 20px);
  text-align: center;
  margin-bottom: 32px;
}

.wordmark {
  margin: 0;
  font-size: clamp(23px, 7.4vw, 46px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--stamp);
}

.tagline {
  margin: 10px 0 0;
  font-size: clamp(11px, 3.2vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1, h2 { line-height: 1.25; }
h1 { font-size: 28px; margin: 0 0 8px; }
h2 {
  font-size: 19px;
  margin: 34px 0 10px;
  letter-spacing: 0.05em;
  color: var(--green);
}

p, li { color: #2a2620; }
a { color: var(--stamp); }
a:hover { text-decoration: none; }

ul { padding-left: 1.15em; }
li { margin: 6px 0; }

.lede { font-size: 19px; }

.updated {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: 0;
}

.cta {
  display: inline-block;
  margin: 8px 0 4px;
  padding: 13px 26px;
  background: var(--green);
  color: var(--paper);
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.06em;
  font-size: 16px;
}
.cta--soon {
  background: var(--border-inner);
  color: #4a3c2a;
  cursor: default;
}

.note {
  border-left: 3px solid var(--border-inner);
  padding: 2px 0 2px 14px;
  color: var(--muted);
  font-size: 15px;
}

hr {
  border: 0;
  border-top: 1px solid var(--border-inner);
  margin: 40px 0 24px;
}

.nav {
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--muted);
}
.nav a { margin: 0 8px; white-space: nowrap; }

.studio {
  margin: 26px 0 0;
  text-align: center;
}
.studio img {
  display: block;
  margin: 0 auto 10px;
  height: 56px;
  width: auto;
}
.studio p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.studio strong { font-weight: 600; color: var(--cyclamen); }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #17150f;
    --ink: #ece4d6;
    --title-band: #241f16;
    --border: #6f5a3a;
    --border-inner: #8a6f49;
    --muted: #a2947f;
    --green: #8fb37f;
    --stamp: #d98b7f;
    --cyclamen: #e879b0;
  }
  :root:not([data-theme="light"]) p,
  :root:not([data-theme="light"]) li { color: #ddd3c2; }
  :root:not([data-theme="light"]) .cta { color: #17150f; }
}
