/* Tulpar default — inherits admin TDS via tulpar-admin.css on coming-soon.
   Shared chrome for leftover default templates (auth/errors) stays Nunito + ink. */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --tulpar-ink: #262833;
  --tulpar-muted: #66799e;
  --tulpar-surface: #e6e7ee;
  --tulpar-font: 'Nunito', sans-serif;
  --tulpar-border: #d1d9e6;
  --tulpar-shadow-d: #b8b9be;
  --tulpar-shadow-l: #ffffff;
}

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

html, body,
button, input, select, textarea {
  font-family: var(--tulpar-font);
}

body {
  color: var(--tulpar-ink);
  min-height: 100vh;
  background: var(--tulpar-surface);
  -webkit-font-smoothing: antialiased;
}

.site-header {
  background: var(--tulpar-ink);
  color: #f3f7fa;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-header a { color: #f3f7fa; text-decoration: none; font-weight: 700; }
.site-nav a { font-weight: 500; font-size: .95rem; margin-right: 1rem; color: #c8ccd4; }

.site-main { max-width: 960px; margin: 2rem auto; padding: 0 1.5rem; }
.site-main--blank { max-width: none; margin: 0; padding: 0; }

.site-footer {
  text-align: center;
  padding: 2rem;
  color: var(--tulpar-muted);
  font-size: .85rem;
  border-top: 1px solid var(--tulpar-border);
  margin-top: 4rem;
}

.error-page, .auth { text-align: center; padding: 2rem 0; }
.error-page h1, .auth h1 { font-size: 2rem; margin-bottom: 1rem; }

.article h1, .page h1 { font-size: 2rem; margin-bottom: 1rem; }
.article-body, .page-body { line-height: 1.75; color: #31344b; white-space: pre-wrap; }
