/* GoComply – Baustellenseite
   Keine externen Ressourcen, keine Schriften von Dritten, keine Skripte, keine Cookies. */

:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --text: #1a1d21;
  --muted: #5f666e;
  --line: #e2ded8;
  --accent: #14505f;
  --accent-soft: #eef3f4;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14171a;
    --surface: #1b1f23;
    --text: #e9e7e4;
    --muted: #9aa2aa;
    --line: #2b3137;
    --accent: #7cb8c7;
    --accent-soft: #1d262a;
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 2rem) 3rem;
}

/* ---------- Kopf ---------- */

.brand {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  text-decoration: none;
}

.brand span { color: var(--accent); }

.brand-sub {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 2.25rem 0;
}

/* ---------- Statusmeldung ---------- */

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.3rem 0.75rem 0.3rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
}

h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.lead {
  margin: 1rem 0 0;
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 34rem;
}

/* ---------- Sprachblöcke ---------- */

.lang { margin-top: 2.25rem; }
.lang + .lang { margin-top: 1.9rem; }

.lang-label {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Kontakt ---------- */

.contact {
  margin-top: 2.5rem;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.contact p { margin: 0; }
.contact p + p { margin-top: 0.4rem; }
.contact .label { font-size: 0.8rem; color: var(--muted); }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

/* ---------- Inhaltsseiten ---------- */

h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

p { margin: 0 0 1rem; }

.addr {
  margin: 0 0 1rem;
  font-style: normal;
  line-height: 1.55;
}

ul { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: 0.3rem; }

.small { font-size: 0.88rem; color: var(--muted); }

.back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* ---------- Fuß ---------- */

footer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 0.9rem;
}

h1 + .small { margin-top: 0.45rem; }
