:root {
  --dark: #020817;
  --dark-soft: #07111f;
  --blue: #0837b8;
  --cyan: #16d5d2;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --ink: #0f172a;
  --slate: #475569;
  --line: rgba(255,255,255,.12);
  --line-light: rgba(8,55,184,.14);
  --shadow: 0 24px 70px rgba(15,23,42,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--dark);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
[hidden] { display: none !important; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 850px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2,8,23,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 950;
  letter-spacing: .18em;
  margin-right: auto;
}
.brand img {
  width: 124px;
  max-height: 58px;
  object-fit: contain;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 10px 13px;
  color: var(--muted);
  border-radius: 999px;
  font-weight: 800;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--cyan);
  background: rgba(22,213,210,.12);
}
.lang-button {
  width: 46px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero,
.page-hero {
  background:
    radial-gradient(circle at top left, rgba(8,55,184,.36), transparent 35rem),
    radial-gradient(circle at top right, rgba(22,213,210,.20), transparent 32rem),
    linear-gradient(135deg, #020817, #07111f);
}
.hero { padding: 90px 0; }
.hero-grid {
  min-height: 64vh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.page-hero { padding: 86px 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .82rem;
  font-weight: 950;
}
h1, h2, h3 { margin-top: 0; }
h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}
p, li { color: var(--muted); line-height: 1.75; font-size: 1.03rem; }
.hero-text { max-width: 680px; font-size: 1.17rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  transition: .18s ease;
  border: 0;
  cursor: pointer;
}
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 40px rgba(22,213,210,.18);
}
.button.secondary {
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(8,55,184,.22);
}
.button.dark {
  color: #fff;
  background: transparent;
  border: 1px solid var(--line);
}
.button:hover { transform: translateY(-1px); }

.hero-visual {
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  display: grid;
  place-items: center;
}
.hero-visual img {
  width: min(86%, 560px);
  object-fit: contain;
}

.section { padding: 76px 0; }
.light { background: #f8fafc; color: var(--ink); }
.light p, .light li { color: var(--slate); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card,
.news-card,
.info-panel,
.contact-form,
.article-card,
.legal {
  border: 1px solid var(--line-light);
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  padding: 30px;
  box-shadow: var(--shadow);
}
.card p,
.news-card p,
.info-panel p,
.article-card p,
.legal p { color: var(--slate); }
.card-line {
  display: block;
  width: 78px;
  height: 7px;
  border-radius: 999px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}
.about-owner {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 38px;
  align-items: center;
}
.owner-photo {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #fff;
  box-shadow: var(--shadow);
}
.owner-photo img { display: block; width: 100%; }
.owner-text .info-panel.compact { margin-top: 24px; padding: 22px; }

.news-grid { display: grid; gap: 22px; }
.news-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: #64748b;
}
.news-meta strong { color: var(--blue); }
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
}
.contact-form { display: grid; gap: 18px; }
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}
input, textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}
.hidden-field { display: none !important; }
.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
}
.form-status.success,
.form-status.error { display: block; }
.form-status.success { background: #dcfce7; color: #166534; }
.form-status.error { background: #fee2e2; color: #991b1b; }

.article {
  padding: 76px 0;
  background: #f8fafc;
  min-height: 70vh;
}
.article-card h1 { color: var(--ink); }
.article-excerpt { font-weight: 800; font-size: 1.16rem; }
.back-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--line);
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.footer-grid a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}
.footer-brand { margin-bottom: 12px; }

@media (max-width: 1080px) {
  .site-nav a { padding: 10px 9px; }
}
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(2,8,23,.98);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .hero-grid,
  .split,
  .about-owner,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .cards,
  .cards.two { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  h1 { font-size: 2.55rem; }
  .brand { letter-spacing: .11em; }
  .brand img { width: 108px; max-height: 52px; }
}


/* Sprachumschaltung: Standard Deutsch, Englisch wird nur bei body[data-lang="en"] angezeigt */
.lang-en {
  display: none !important;
}

.lang-de {
  display: inline !important;
}

body[data-lang="en"] .lang-de {
  display: none !important;
}

body[data-lang="en"] .lang-en {
  display: inline !important;
}

/* Lange Navigation besser umbrechen/verhindern */
.site-nav a {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .site-nav a {
    padding: 9px 8px;
    font-size: 0.95rem;
  }
}


.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-weight: 950;
  margin-top: auto;
  align-self: flex-end;
}

.card {
  display: flex;
  flex-direction: column;
}

.card p:last-of-type {
  margin-bottom: 18px;
}

.legal h2 {
  margin-top: 34px;
}

.legal h2:first-child {
  margin-top: 0;
}
