/* Farben orientiert am Logo */
:root {
  --primary: #0077b5; /* fallback blau */
  --accent: #f84c4e; /* rot aus dem Logo (ersetzt gelb) */
  --dark: #1b2b3a;
  --muted: #6b7280;
  --bg: #ffffff;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}
body {
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  margin: 0;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.45;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  border-bottom: 4px solid var(--accent);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), transparent);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img {
  height: 140px; /* größeres, lokales Logo */
  width: auto;
}
.contact-quick a {
  margin-left: 1rem;
  color: var(--muted);
  text-decoration: none;
}

.hero {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, rgba(0, 119, 181, 0.05), transparent);
}
.hero-inner {
  text-align: left;
}
.hero h1 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin: 0 0 0.5rem;
  color: var(--primary);
}
.lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #111;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.services {
  padding: 2rem 1rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.service {
  border: 1px solid rgba(16, 24, 32, 0.06);
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
}
.service h3 {
  margin-top: 0;
  color: var(--primary);
}

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.25rem 0;
  background: #fafafa;
}
.footer-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.contact h4 {
  margin: 0 0 0.25rem;
}
.smallprint {
  color: var(--muted);
}

/* Footer links in primary color */
.site-footer a { color: var(--primary); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .logo img {
    height: 88px;
  }
}
