/* Omaki: shared minimal stylesheet for stub pages (404, privacy, terms, status). */
:root {
  --paper: #F4F1EC;
  --paper-2: #ECE8E0;
  --ink: #1A1814;
  --ink-2: #2A2724;
  --coral: #D9603B;
  --coral-deep: #B84A28;
  --mute: #8B847B;
  --rule: rgba(26,24,20,.10);
  --sans: "Space Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
::selection { background: var(--coral); color: var(--paper); }
a { color: inherit; text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--coral); }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 32px; }

nav.top {
  background: var(--ink); color: var(--paper);
  border-bottom: 1px solid rgba(244,241,236,.10);
}
nav.top .inner {
  max-width: 1360px; margin: 0 auto; padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.lockup { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.lockup .mark { width: 28px; height: 28px; }
.lockup .word { font-size: 20px; letter-spacing: -0.04em; font-weight: 500; }
nav.top .home { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,241,236,.7); text-decoration: none; }
nav.top .home:hover { color: var(--paper); }

.page { padding: 96px 0 120px; }
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); margin-bottom: 20px; }
h1 { font-size: clamp(36px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 20px; font-weight: 500; }
.lede { font-size: 18px; line-height: 1.55; color: var(--ink-2); opacity: .82; margin: 0 0 48px; max-width: 600px; }

h2 { font-size: 22px; line-height: 1.25; letter-spacing: -0.015em; margin: 48px 0 14px; font-weight: 500; }
p, li { font-size: 15.5px; line-height: 1.65; color: var(--ink-2); }
p { margin: 0 0 16px; }
ul { padding-left: 20px; margin: 0 0 24px; }
li { margin-bottom: 6px; }
.meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute); margin-top: 8px; padding-top: 24px; border-top: 1px solid var(--rule);
}

.notice {
  margin: 32px 0; padding: 18px 22px; border-radius: 10px;
  background: var(--paper-2); border-left: 3px solid var(--coral);
  font-size: 14px; line-height: 1.55;
}
.notice b { font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 6px; font-size: 14px; font-weight: 500;
  background: var(--ink); color: var(--paper); text-decoration: none;
  transition: background .2s ease;
}
.btn:hover { background: var(--coral); }
.btn .dot { width: 6px; height: 6px; border-radius: 99px; background: var(--paper); }

footer.bot {
  padding: 32px 0; background: var(--paper-2); border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute);
}
footer.bot .row { display: flex; justify-content: space-between; align-items: center; max-width: 1360px; margin: 0 auto; padding: 0 48px; }

/* Status page */
.status-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; background: #fff; border-radius: 8px;
  box-shadow: inset 0 0 0 1px var(--rule); margin-bottom: 8px;
}
.status-row .nm { font-size: 15px; font-weight: 500; }
.status-row .st { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #3F7A4A; }
.status-row .st .d { width: 8px; height: 8px; border-radius: 99px; background: #3F7A4A; }

/* 404 */
.fourohfour { text-align: center; padding: 140px 0 160px; }
.fourohfour .big { font-size: clamp(96px, 16vw, 200px); line-height: 1; letter-spacing: -0.06em; font-weight: 500; color: var(--ink); }
.fourohfour .big em { font-style: italic; color: var(--coral); font-weight: 400; }
.fourohfour h1 { margin-top: 24px; }
.fourohfour .cta { margin-top: 40px; }

@media (max-width: 640px) {
  nav.top .inner, footer.bot .row { padding: 14px 20px; }
  .wrap { padding: 0 20px; }
}
