/* ===============================
   PREMIUM BASE
================================ */
:root{
  --bg:#f6f6f6;
  --text:#0b0b0b;
  --muted:#5b5b5b;
  --border:#e6e6e6;
  --card:#ffffff;
  --shadow:0 18px 45px rgba(0,0,0,.08);
  --shadow2:0 10px 25px rgba(0,0,0,.06);
  --radius:18px;
  --radius2:14px;
  --max:1200px;
  --cta:#000;
  --ctaText:#fff;
  --focus: rgba(0,0,0,.25);
}

*,
*::before,
*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,"Segoe UI",sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:100%;
  max-width: var(--max);
  margin:0 auto;
  padding: 0 18px;
}

.wrapper{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

main{ flex:1; }

/* ===============================
   HEADER (WHITE)
================================ */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid var(--border);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 160px;
}

.brand img{
  height: 46px;            /* Logo Größe */
  width:auto;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
}

.nav-links a{
  color:#000;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  font-size:.82rem;
  padding:10px 10px;
  border-radius:999px;
  transition: background .2s ease, opacity .2s ease;
}

.nav-links a:hover{
  background: rgba(0,0,0,.05);
}

.nav-cta{
  background: var(--cta);
  color: var(--ctaText) !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight:800;
}

.nav-cta:hover{
  background:#222;
  color:#fff !important;
}

/* Burger */
.burger{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--border);
  border-radius: 12px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  transition: box-shadow .2s ease;
}
.burger:focus-visible{
  outline:3px solid var(--focus);
  outline-offset:2px;
}
.burger-lines{
  width:18px;
  height:12px;
  position:relative;
}
.burger-lines span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#000;
  border-radius:999px;
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}
.burger-lines span:nth-child(1){ top:0; }
.burger-lines span:nth-child(2){ top:5px; }
.burger-lines span:nth-child(3){ top:10px; }

.burger.active .burger-lines span:nth-child(1){ top:5px; transform: rotate(45deg); }
.burger.active .burger-lines span:nth-child(2){ opacity:0; }
.burger.active .burger-lines span:nth-child(3){ top:5px; transform: rotate(-45deg); }

/* Mobile Drawer */
.drawer{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
}
.drawer.open{ display:block; }
.drawer .drawer-inner{
  padding: 10px 0 14px;
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.drawer a{
  padding: 12px 12px;
  border-radius: 14px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.9rem;
}
.drawer a:hover{ background: rgba(0,0,0,.05); }
.drawer .drawer-cta{
  margin-top:6px;
  background:#000;
  color:#fff !important;
  text-align:center;
}

/* ===============================
   HERO / SECTIONS
================================ */
.hero{
  padding: 48px 0 18px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}
h1{
  margin:0 0 10px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height:1.05;
}
.lead{
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.section{
  padding: 22px 0 48px;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 14px;
}
.section-title{
  margin:0;
  font-size: 1.05rem;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:#000;
}
.section-desc{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
}

/* Cards / Grids */
.grid{
  display:grid;
  gap:16px;
}
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }

.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.card h3{
  margin: 0 0 6px;
}
.card p{
  margin: 0;
  color: var(--muted);
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 12px;
}
.badge{
  border:1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .82rem;
  color:#111;
  background:#e7e7e7;
}

/* Buttons */
.btn-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid #000;
  background:#000;
  color:#f1f1f1 !important;
  font-weight:900;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover{ background:#222; transform: translateY(-1px); }
.btn:focus-visible{ outline:3px solid var(--focus); outline-offset:2px; }

.btn-ghost{
  background:transparent;
  color:#0a0a0a !important;
  border:1px solid #000;
}
.btn-ghost:hover{ background: rgba(0,0,0,.05); }

/* ===============================
   TEAM
================================ */
.avatar{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 10px;
  border:1px solid var(--border);
}

/* ===============================
   GALLERY
================================ */
.gallery-grid{
  display:grid;
  gap:16px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.gallery-item{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.gallery-item img{
  width:100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.gallery-cap{
  padding: 12px 14px;
  font-weight:800;
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.gallery-cap small{ color: var(--muted); font-weight:700; }

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.86);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
  padding: 22px;
}
.lightbox.open{ display:flex; }
.lightbox img{
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  background:#000;
}
.lb-close{
  position:absolute;
  top:16px;
  right:16px;
  background: rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 10px 14px;
  cursor:pointer;
}

/* ===============================
   FAQ
================================ */
.faq{
  display:grid;
  gap:10px;
}
.faq-item{
  border:1px solid var(--border);
  border-radius: var(--radius2);
  overflow:hidden;
  background:#fff;
}
.faq-q{
  width:100%;
  text-align:left;
  padding: 14px 14px;
  background:#fff;
  border:0;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-weight:900;
}
.faq-a{
  display:none;
  padding: 0 14px 14px;
  color: var(--muted);
}
.faq-item.open .faq-a{ display:block; }

/* ===============================
   CONTACT
================================ */
.form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:6px;
}
label{ font-weight:800; }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background:#fff;
  font: inherit;
}
textarea{ min-height: 140px; resize: vertical; }

.notice{
  border-radius: 14px;
  padding: 12px 14px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow2);
  display:none;
}
.notice.show{ display:block; }
.notice.success{ border-color: rgba(0,160,90,.35); background: rgba(0,160,90,.08); }
.notice.error{ border-color: rgba(200,0,40,.35); background: rgba(200,0,40,.08); }

.map{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow2);
  background:#fff;
}

/* ===============================
   FOOTER (DARK)
================================ */
.site-footer{
  background:#0d0d0d;
  color:#fff;
  margin-top: 40px;
}
.footer-top{
  padding: 34px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}
.footer-brand-title{
  font-weight: 900;
  margin-bottom: 8px;
}
.footer-muted{ color: rgba(255,255,255,.72); }
.footer-heading{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.82rem;
  color: rgba(255,255,255,.70);
  margin-bottom: 10px;
  font-weight: 800;
}
.footer-links a{
  display:block;
  padding: 6px 0;
  color:#fff;
}
.footer-links a:hover{ opacity:.75; }

.footer-bottom{
  text-align:center;
  padding: 14px 0;
  border-top:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.70);
  font-size:.85rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .nav-links{ display:none; }
  .burger{ display:flex; }
  .grid-2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 620px){
  .grid-3{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .btn, .btn-ghost{ width:100%; }
  .brand img{ height: 42px; }
}