:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --card:#f9fafb;
  --border:#e5e7eb;
  --accent:#f59e0b;
  --accent2:#10b981;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1050px;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 30%, #ffffff 100%);
  color:var(--text);
  line-height:1.55;
}

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

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px;
}

.card{
  background: rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

/* Intro Bild */
.intro-image img{
  width:100%;
  height:60vh;
  object-fit:cover;
  display:block;
}
@media (max-width:768px){
  .intro-image img{ height:45vh; }
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 16px 0 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
}
.brand-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background: var(--accent);
}
.brand-name{ letter-spacing:-.02em; }

.navlinks{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  font-size:14px;
  color:var(--muted);
  padding: 6px 8px;
  border-radius: 10px;
}
.navlinks a:hover{
  background:#ffffff;
  border:1px solid var(--border);
  text-decoration:none;
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:stretch;
}

@media (max-width:900px){
  .hero{ grid-template-columns:1fr; }
}

.hero-left{
  padding: 26px;
}

h1{
  margin:0 0 10px;
  font-size: 38px;
  letter-spacing: -.02em;
}
@media (max-width:520px){
  h1{ font-size:30px; }
}

.lead{
  margin:0 0 16px;
  color:var(--muted);
  font-size: 16px;
}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:800;
  font-size:14px;
  text-decoration:none;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  border-color: transparent;
}

.btn-green{
  background: linear-gradient(135deg, var(--accent2) 0%, #34d399 100%);
  border-color: transparent;
}

.chips{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.chip{
  border:1px solid var(--border);
  background:#ffffff;
  border-radius:999px;
  padding: 8px 12px;
  font-size:14px;
  color: #111827;
}

.note{
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.hero-right{
  position:relative;
}
.hero-right img{
  width:100%;
  height:100%;
  min-height: 320px;
  object-fit:cover;
  display:block;
}
.hero-caption{
  position:absolute;
  left:14px;
  bottom:14px;
  background: rgba(17,24,39,.65);
  color:#fff;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  max-width: 90%;
}

/* Sections / boxes */
section{ margin-top: 18px; }

.box{
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width:900px){
  .grid2{ grid-template-columns:1fr; }
}

h2{
  margin:0 0 10px;
  font-size: 22px;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin: 6px 0; }

.info{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed #f59e0b55;
  background: #fff7ed;
}

/* Galerie */
.gallery-section{ margin-top: 0; }
.gallery-intro{
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 620px;
}
.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (min-width:1024px){
  .gallery{
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}
.gallery figure{ margin:0; }
.gallery img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery img:hover{
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}
.gallery figcaption{
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

/* Videos */
.videos{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width:900px){
  .videos{ grid-template-columns:1fr; }
}
.video{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#000;
  aspect-ratio: 16 / 9;
}
.video iframe{ width:100%; height:100%; border:0; }

/* Kontakt */
.contact{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:#fff;
}

/* Footer */
.footer{
  margin-top: 22px;
  padding: 18px 0 30px;
  color: var(--muted);
  font-size: 13px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:space-between;
  border-top:1px solid var(--border);
}
.footer-links{
  display:flex;
  gap:8px;
  align-items:center;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding: 18px;
}
.lightbox.open{ display:flex; }
.lightbox-img{
  max-width: 92vw;
  max-height: 85vh;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}
.lightbox-close{
  position:absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(17,24,39,.65);
  color:#fff;
  font-size: 26px;
  cursor:pointer;
}
