/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-900: #0B1B2E;
  --navy-800: #11263F;
  --navy-700: #1B324F;
  --ink: #0F172A;
  --ink-soft: #334155;
  --muted: #64748B;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FC;
  --orange: #F58B1F;
  --orange-soft: #FDEBD4;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ─── LAYOUT CONTAINERS ─────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 88px 0; }

/* ─── HEADER ────────────────────────────────────────────── */
header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.logo-img {
  height: 72px;
  width: auto;
}

nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  color: #94A3B8;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

nav a:hover { color: #FFFFFF; }

nav a.active {
  color: #FFFFFF;
  font-weight: 600;
}

/* ─── HERO (slim) ───────────────────────────────────────── */
.hero {
  background: var(--navy-900);
  background-image:
    radial-gradient(900px 500px at 20% 0%, rgba(245,139,31,0.08), transparent 60%),
    radial-gradient(700px 400px at 85% 100%, rgba(37,99,235,0.12), transparent 60%);
  color: #FFFFFF;
  padding: 96px 0 88px;
  text-align: left;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFFFF;
  max-width: 780px;
  letter-spacing: -0.5px;
}

.hero h1 span { color: var(--orange); }

.hero-lead {
  font-size: 1.08rem;
  color: #CBD5E1;
  max-width: 620px;
  line-height: 1.7;
}

/* ─── SECTION COMMONS ───────────────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ─── GESCHÄFTSBEREICHE ─────────────────────────────────── */
.bereiche { background: var(--bg-soft); }

.bereiche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bereich {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 32px 30px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.bereich::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.2s;
}

.bereich:hover {
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}

.bereich:hover::before { opacity: 1; }

.bereich-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.bereich-name .accent { color: var(--orange); }

.bereich-kategorie {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.bereich-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ─── ÜBER / MANAGEMENT (slim) ──────────────────────────── */
.about {
  background: #FFFFFF;
}

.about-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-portrait {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-soft);
  box-shadow: 0 6px 20px rgba(11,27,46,0.10);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.about-text p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.about-name small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
  font-size: 0.82rem;
  letter-spacing: 0;
}

/* ─── KURZPROFIL ────────────────────────────────────────── */
.profil {
  background: #FFFFFF;
}

.profil-inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.profil-portrait {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-soft);
  box-shadow: 0 6px 20px rgba(11,27,46,0.10);
}

.profil-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.profil-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.profil-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.profil-text p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 640px;
}

@media (max-width: 900px) {
  .profil-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .profil-portrait { margin: 0 auto; }
  .profil-text p { margin: 0 auto; }
}

/* ─── LEGAL PAGES (Impressum / Datenschutz) ─────────────── */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 32px;
}

.legal h1 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.3px;
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal ul {
  color: var(--ink-soft);
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal ul li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal .stand {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 36px;
  font-style: italic;
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--navy-900);
  color: #94A3B8;
  padding: 36px 0;
  font-size: 0.88rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #94A3B8;
  transition: color 0.2s;
}

.footer-links a:hover { color: #FFFFFF; }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 72px 0 64px; }
  section { padding: 64px 0; }
  .bereiche-grid { grid-template-columns: 1fr; }
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .about-portrait {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .header-inner { padding: 12px 20px; }
  .logo-img { height: 56px; }
  nav { gap: 18px; }
  nav a { font-size: 0.85rem; }
  .hero-inner, .container { padding: 0 20px; }
  .hero h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  .bereich { padding: 24px 22px; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
}
