:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --text: #171512;
  --muted: #70695e;
  --line: #d8d0c2;
  --accent: #9f2f2a;
  --accent-strong: #2f5f6f;
  --panel: #fffdf8;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.hero {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(120px, 320px) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 8vw, 108px) 0;
}

.mark {
  margin: 0;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 12vw, 156px);
  font-weight: 700;
  line-height: 0.86;
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.9;
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.status-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(28px, 5vw, 64px) 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.status-grid div {
  min-width: 0;
  background: var(--panel);
  padding: 18px;
}

dt {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .shell {
    place-items: start;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

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