:root {
  --navy: #12213a;
  --navy-2: #1a2744;
  --gold: #c9a227;
  --gold-2: #d4b23a;
  --cream: #f4f0e8;
  --white: #fff;
  --text: #1a2744;
  --muted: #5c6578;
  --line: #e6e0d4;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5.2rem; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: var(--cream);
}

a { color: inherit; }

img { max-width: 100%; height: auto; display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.55rem 1.4rem;
  z-index: 60;
  background: var(--navy);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

body.home .site-header,
body.legal .site-header {
  position: fixed;
  background: var(--navy);
}

body.legal {
  padding-top: 4.6rem;
}

.brand img {
  height: 52px;
  width: auto;
  background: #fff;
  border-radius: 6px;
  padding: 3px 7px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.75rem;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.86rem;
  padding: 0.35rem 0.1rem;
}

.site-nav a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy) !important;
}

.btn-gold:hover { background: var(--gold-2); }

.btn-outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.75);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold) !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
}

.hero-wrap {
  position: relative;
  min-height: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 38, 0.88) 0%, rgba(12, 20, 38, 0.55) 48%, rgba(12, 20, 38, 0.28) 100%),
    url("/static/hintergrund.jpg?v=10") center 35%/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.hero {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.4rem 1.4rem 1.6rem;
  position: relative;
}

.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.start-note {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero h1 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  line-height: 1.15;
  font-weight: 800;
  max-width: 22ch;
}

.hero .lead {
  margin: 0 0 1rem;
  max-width: 34rem;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.3rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dot {
  width: 1.05rem;
  height: 1.05rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  flex: 0 0 auto;
}

.hero-script {
  position: absolute;
  right: 1.4rem;
  bottom: 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  font-size: 1.25rem;
  max-width: 8rem;
  text-align: right;
  line-height: 1.25;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.photo-grid figure {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 33, 58, 0.06);
}

.photo-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.photo-grid figcaption {
  padding: 0.65rem 0.8rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.video-box {
  margin-top: 1.4rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #0b1c3a;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 12px 32px rgba(11, 27, 58, 0.18);
}

.video-box video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #0b1c3a;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.4rem 1.4rem;
}

.center { text-align: center; }

.section h2 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.intro {
  max-width: 46rem;
  margin: 0 auto;
  color: var(--muted);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.svc {
  background: var(--white);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 33, 58, 0.06);
}

.svc img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.svc-body { padding: 0.9rem 0.85rem 1.1rem; }

.svc h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.svc p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.about {
  background: var(--navy-2);
  color: #fff;
}

.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-copy {
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 { color: #fff; }

.about-copy p {
  color: rgba(255,255,255,0.86);
  margin: 0 0 1.6rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value { text-align: center; }

.value svg { margin: 0 auto 0.45rem; }

.value strong {
  display: block;
  color: var(--gold);
  font-size: 0.92rem;
}

.value span {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.4rem;
  align-items: start;
}

.contact h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0.2rem 0 0.8rem; }

.contact .lead-sm { color: var(--muted); margin: 0 0 1.3rem; }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.7rem 0;
}

.contact-list a { text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--gold); }

.form-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.3rem;
  box-shadow: 0 10px 28px rgba(18, 33, 58, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0.55rem 0 0.3rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  background: #faf9f6;
}

textarea { min-height: 6.5rem; resize: vertical; }

.form-card .btn { width: 100%; margin-top: 1rem; border: 0; }

.hp {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.form-status.ok { color: #1a7a3a; }
.form-status.err { color: #a33; }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 1.4rem 1.4rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.footer-links a { text-decoration: none; font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.78rem; }

.social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.social a {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.legal-main {
  max-width: 720px;
  margin: 2rem auto 3rem;
  background: #fff;
  padding: 2rem 1.4rem;
  border-radius: 12px;
}

.legal-main h1 { margin-top: 0; }

@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .about-grid, .contact-grid, .form-row, .values { grid-template-columns: 1fr; }
  .hero-script { display: none; }
  .about-copy { padding: 2rem 1.4rem 2.4rem; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .btn-header { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 0.6rem 1rem 1rem;
  }
  .site-nav.is-open { display: flex; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { max-width: none; }
}

@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
}
