/* mmj-solutions.de — one small stylesheet for the whole site.
   Kept in an external file on purpose: the CSP has no 'unsafe-inline'. */

:root {
  color-scheme: dark;

  --bg: #121316;
  --text: #e8e9eb;
  --muted: #9ea2a9;
  --accent: #8ba9ff;
  --rule: #2c2e33;
}

* {
  box-sizing: border-box;
}

/* Set on html too: body is max-width constrained, so the surrounding canvas
   would otherwise fall back to the browser default. */
html {
  background: var(--bg);
}

body {
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
  max-width: 40rem;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

h1 {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h2 {
  margin: 2.5rem 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

h3 {
  margin: 1.75rem 0 0.35rem;
  font-size: 1rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35rem;
}

a {
  color: var(--accent);
}

a:hover {
  text-decoration: none;
}

.tagline {
  margin-bottom: 2.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.5;
}

.address {
  font-style: normal;
}

hr {
  margin: 2.5rem 0 1.25rem;
  border: 0;
  border-top: 1px solid var(--rule);
}

footer {
  color: var(--muted);
  font-size: 0.875rem;
}

footer a {
  margin-right: 0.75rem;
}

.back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.updated {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.875rem;
}
