
:root {
  --navy: #172234;
  --navy2: #233247;
  --orange: #ee7d22;
  --paper: #f5f7fb;
  --line: #dce3ed;
  --text: #18202b;
  --muted: #687386;
  --white: #ffffff;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--white); line-height: 1.55; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display:flex; flex-direction: column; gap: 0; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.brand small { color: var(--muted); font-weight: 400; letter-spacing: 0; }
.navlinks { display: flex; gap: 18px; align-items: center; font-size: 14px; }
.navlinks a { text-decoration: none; color: var(--navy); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 18px; border-radius: 999px; background: var(--orange); color: white !important; text-decoration: none; font-weight: 700; border: 1px solid transparent; box-shadow: 0 8px 18px rgba(238,125,34,.2); }
.button.secondary { background: white; color: var(--navy) !important; border-color: var(--line); box-shadow: none; }
.hero { background: linear-gradient(90deg, rgba(23,34,52,.96), rgba(23,34,52,.82)), url('../images/gebaeude-aussen.jpg') center/cover no-repeat; color: white; padding: 88px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: end; }
.eyebrow { color: var(--orange); font-weight: 800; letter-spacing: .11em; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; }
h1 { margin: 0; font-size: clamp(38px, 6vw, 74px); line-height: .98; letter-spacing: -0.04em; }
.lead { margin: 24px 0 0; font-size: clamp(18px, 2vw, 23px); max-width: 780px; color: #e5edf8; }
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 22px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.fact { background: white; color: var(--navy); border-radius: 18px; padding: 16px; min-height: 92px; }
.fact span { display: block; color: var(--orange); font-size: 12px; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.fact strong { display: block; font-size: 24px; line-height: 1.1; margin-top: 6px; }
.fact small { color: var(--muted); }
.notice { background: #fff3e9; color: var(--navy); border-left: 6px solid var(--orange); padding: 18px 20px; border-radius: 16px; margin: -30px auto 0; position: relative; z-index: 3; box-shadow: 0 14px 36px rgba(23,34,52,.12); }
section { padding: 70px 0; }
.section-title { margin: 0 0 18px; color: var(--navy); font-size: clamp(28px, 3vw, 44px); line-height: 1.05; letter-spacing: -0.025em; }
.section-lead { color: var(--muted); max-width: 780px; font-size: 18px; margin: 0 0 34px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.checks { list-style: none; padding: 0; margin: 0; display:grid; gap: 12px; }
.checks li { padding-left: 30px; position: relative; }
.checks li:before { content:'✓'; position:absolute; left:0; top:0; color: var(--orange); font-weight: 900; }
.image { border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.image img { display: block; width: 100%; height: auto; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { text-decoration: none; color: inherit; }
.gallery figure { margin:0; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; overflow:hidden; height: 100%; }
.gallery img { width: 100%; height: 185px; object-fit: cover; display:block; transition: transform .25s ease; }
.gallery a:hover img { transform: scale(1.035); }
.gallery figcaption { padding: 10px 12px; font-size: 14px; color: var(--muted); }
.plans { display:grid; gap: 18px; }
.plan { background:white; border:1px solid var(--line); border-radius: 22px; padding: 20px; }
.plan h3 { margin:0 0 12px; color: var(--navy); }
.plan img { width:100%; height:auto; display:block; border-radius: 12px; background:#fff; }
.contact { background: var(--navy); color: white; }
.contact .section-title, .contact h3 { color:white; }
.contact .section-lead { color:#dce5f0; }
.contact-card { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:24px; padding:28px; }
.contact-grid { display:grid; grid-template-columns: 1fr .8fr; gap:36px; align-items:center; }
.footer { padding: 32px 0; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .navlinks { display:none; }
  .hero-grid, .grid-2, .contact-grid { grid-template-columns:1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .facts, .gallery { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  section { padding: 52px 0; }
}
