/* Baltigo Impressum – minimal static styles */

:root {
  --bg: #0b0f14;
  --surface: #111821;
  --text: #e5e9f0;
  --text-muted: #a8b3c5;
  --accent: #72c8ff;
  --accent-hover: #9bd9ff;
  --border: #223042;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 10px 28px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --max-width: 40rem;
  --font: "Georgia", "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem 2rem;
}

.header {
  width: 100%;
  max-width: var(--max-width);
  margin-bottom: 1rem;
}

.brand {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
}

.brand:hover,
.brand:focus-visible {
  color: var(--accent-hover);
  text-decoration: underline;
}

.card {
  width: 100%;
  max-width: var(--max-width);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem 2rem;
  flex: 0 1 auto;
}

@media (min-width: 480px) {
  .card {
    padding: 2rem 2.25rem 2.25rem;
  }
}

h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h2 {
  margin: 1.75rem 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

h2:first-of-type {
  margin-top: 1.25rem;
}

p {
  margin: 0 0 0.75rem;
  color: var(--text);
}

p.intro {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.notice {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  background: #2a2314;
  border: 1px solid #66542a;
  border-radius: calc(var(--radius) - 4px);
  color: var(--text);
}

.notice--prominent {
  background: #3a2c0f;
  border-color: #9c7420;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text);
}

li {
  margin-bottom: 0.35rem;
}

li::marker {
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover,
a:focus-visible {
  color: var(--accent-hover);
}

.footer {
  width: 100%;
  max-width: var(--max-width);
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer p {
  margin: 0;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-muted);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--accent);
}
