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

:root {
  --anthrazit: #1F2933;
  --anthrazit-soft: #2C3744;
  --teal: #0E9594;
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --text: #1F2933;
  --text-muted: #6B7280;
  --border: #E5E7EB;
}

html, body { height: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
}

.wordmark {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--anthrazit);
  text-decoration: none;
}

.wordmark::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: 6px;
}

.meta-top {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

h1 .accent { color: var(--teal); }

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 4rem;
}

main { flex: 1; }

section { margin-bottom: 4rem; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.product-list { list-style: none; }

.product {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
}

.product:last-of-type { border-bottom: 1px solid var(--border); }

.product-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--anthrazit);
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.product-link {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}

.product-link:hover { text-decoration: underline; }

.product-soft {
  padding: 1.25rem 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  font-size: 0.95rem;
}

.contact-block a {
  color: var(--anthrazit);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--teal);
}

.contact-block a:hover { color: var(--teal); }

/* Site footer (home + subpages) */
.site-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.site-footer a:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Imprint page styles */
.page-title {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--anthrazit);
}

.page-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 580px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem 1.5rem;
  font-size: 0.95rem;
  margin-bottom: 4rem;
}

.legal-grid dt {
  color: var(--text-muted);
  padding-top: 0.05rem;
}

.legal-grid dd {
  color: var(--anthrazit);
  font-weight: 500;
}

.legal-grid dd .original {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 600px) {
  .container { padding: 3rem 1.25rem 2rem; }
  header.top { margin-bottom: 4rem; }
  h1 { font-size: 1.85rem; }
  .lead { font-size: 1rem; margin-bottom: 3rem; }
  section { margin-bottom: 3rem; }
  .product {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.25rem 0;
  }
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 0.25rem 0;
  }
  .legal-grid dt { margin-top: 1rem; }
  .legal-grid dt:first-child { margin-top: 0; }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
