:root {
  --bg: #faf8f3;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --rule: #d8d2c4;
  --accent: #6b5a3e;
  --max-width: 36rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.page {
  width: 100%;
  max-width: var(--max-width);
  text-align: center;
}

.masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.monogram {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--bg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  user-select: none;
}

.company {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  letter-spacing: 0.005em;
  line-height: 1.2;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  width: 4rem;
  margin: 2rem auto;
}

.status {
  margin: 0.5rem 0;
}

.status-line {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
}

.status-detail {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 28rem;
  margin: 0 auto;
}

.colophon {
  margin-top: 2.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141312;
    --ink: #ece7da;
    --muted: #9b9588;
    --rule: #2f2c27;
    --accent: #c9b489;
  }
  .monogram {
    background: var(--ink);
    color: var(--bg);
  }
}

@media (max-width: 480px) {
  body {
    padding: 2rem 1.25rem;
  }
  .rule {
    margin: 1.5rem auto;
  }
}
