:root{
  --dark:#3A3A3A;
  --accent:#780505;
  --bg:#f6f6f6;
  --card:#ffffff;
  --muted:#6f6f6f;

  --radius:18px;
  --shadow: 0 18px 50px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 28px rgba(0,0,0,.08);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--dark);
  background:
    radial-gradient(900px 380px at 25% 0%, rgba(120,5,5,.10), transparent 55%),
    radial-gradient(900px 380px at 75% 0%, rgba(58,58,58,.10), transparent 55%),
    var(--bg);
}

.container{
  width:min(1100px, 100%);
  margin:0 auto;
  padding:22px 16px 36px;
}

.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:16px;
  min-width:0;
}

.logo-card{
  background:#fff;
  border-radius:14px;
  padding:12px 14px;
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(0,0,0,.06);
  display:flex;
  align-items:center;
}

.logo-card img{
  display:block;
  height:54px;
  width:auto;
}

.brand-text{
  color:var(--muted);
  font-size:14px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.hero{
  display:grid;
  gap:18px;
}

.hero-card{
  background:
    linear-gradient(180deg, rgba(0,0,0,.80), rgba(0,0,0,.86)),
    url("img/hero.jpg") center/cover no-repeat;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.hero-content{
  padding:56px 28px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

h1{
  margin:0 auto 12px;
  color:#fff;
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing:-.6px;
  line-height:1.05;
  max-width: 18ch;
}

.lead{
  margin: 0 auto;
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  max-width: 70ch;
}

.lead strong{ color:#fff; }

.cta-block{
  margin: 26px auto 0;
  max-width: 820px;
  text-align: center;

  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  padding: 22px 22px;
  backdrop-filter: blur(10px);
}

.cta-title{
  color:#fff;
  font-weight:800;
  letter-spacing:.2px;
  margin-bottom:12px;
}

.cta-buttons{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  justify-items: stretch;
  margin-top: 14px;
}

.btn{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
  border-radius:18px;
  padding:20px 22px;
  min-width:300px;
  max-width: 360px;
  margin: 0 auto;
  color:#fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.30);
  transition: all .2s ease;
}

.btn:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 18px 34px rgba(0,0,0,.30);
}

.btn:active{ transform: translateY(-1px); }

.btn-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  flex: 0 0 auto;
}

.btn-icon svg{
  width:24px;
  height:24px;
  fill: currentColor;
}

.btn-text{
  display:flex;
  flex-direction:column;
  gap:3px;
  min-width:0;
}

.btn-label{
  font-weight:900;
  font-size:18px;
  letter-spacing:-.2px;
}

.btn-sub{
  font-size:13px;
  color: rgba(255,255,255,.82);
}

.btn-arrow{
  margin-left:auto;
  font-size:22px;
  opacity:.9;
}

.btn-ig{
  background: linear-gradient(
    135deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border:none;
}

.btn-ig:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(188,24,136,.45);
}

.btn-fb{
  background:#1877f2;
  border:none;
}

.btn-fb:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(24,119,242,.45);
}

.cta-hint{
  margin-top:12px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height:1.5;
}

/* Teaser / Galerie */
.teaser{
  background: var(--card);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-soft);
  border:1px solid rgba(0,0,0,.06);
  padding:22px;
}

.teaser-head h2{
  margin:0;
  font-size:18px;
  letter-spacing:-.2px;
}

.teaser-head p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.6;
}

.gallery{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}

.tile{
  position:relative;
  border-radius: 16px;
  overflow:hidden;
  background:#e9e9e9;
  min-height: 170px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.tile img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transform: scale(1.01);
  transition: transform .25s ease;
}

.tile:hover img{ transform: scale(1.06); }

.t1{ grid-column: span 7; min-height: 240px; }
.t2{ grid-column: span 5; min-height: 240px; }
.t3{ grid-column: span 4; }
.t4{ grid-column: span 4; }
.t5{ grid-column: span 4; }

.footer{
  text-align:center;
  color:#8a8a8a;
  font-size:12px;
  padding-top:22px;
}

/* Kontaktleiste – stärker hervorgehoben */
.contact-bar{
  margin:18px 0 0;
}

.contact-inner{
  position:relative;

  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.88)),
    radial-gradient(800px 160px at 50% 0%, rgba(120,5,5,.14), transparent 60%);

  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.08);

  padding:22px 22px 20px;

  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;

  /* Akzent-Rahmen in Firmenfarbe */
  outline: 2px solid rgba(120,5,5,.25);
  outline-offset: -2px;
}

/* kleiner Badge oben */
.contact-badge{
  position:absolute;
  top:-12px;
  left:18px;

  background: #780505;
  color:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:.4px;

  padding:7px 10px;
  border-radius:999px;
  box-shadow: 0 10px 22px rgba(120,5,5,.28);
  border:1px solid rgba(255,255,255,.18);
}

/* Kontakt-Buttons */
.contact-item{
  text-decoration:none;
  font-weight:900;
  color: var(--dark);

  display:flex;
  align-items:center;
  gap:10px;

  padding:12px 16px;
  border-radius:16px;

  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);

  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.contact-item:hover{
  transform: translateY(-2px);
  background: rgba(120,5,5,.08);
  border-color: rgba(120,5,5,.25);
}

/* Optional: etwas bessere Lesbarkeit auf sehr kleinen Screens */
@media (max-width: 520px){
  .contact-inner{
    padding:22px 14px 18px;
    gap:12px;
  }
  .contact-badge{
    left:12px;
  }
}

/* Mobile */
@media (max-width: 900px){
  .cta-buttons{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .t1,.t2,.t3,.t4,.t5{ grid-column: span 12; }
  .hero-content{ padding:40px 20px; }
  .brand-text{ white-space:normal; }
}

@media (max-width: 720px){
  .cta-buttons{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px){

  .container{
    padding: 14px 10px 28px;
  }

  /* Header sauber untereinander */
  .brand{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .logo-card{
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
  }

  .logo-card img{
    max-width: 100%;
    height: auto;
  }

  .brand-text{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 13px;
    line-height: 1.5;
  }

  /* Hero kompakter */
  .hero-content{
    padding: 28px 14px 22px;
    max-width: 100%;
  }

  h1{
    font-size: 30px;
    line-height: 1.1;
    max-width: 100%;
    margin: 0 auto 14px;
  }

  .lead{
    font-size: 15px;
    line-height: 1.65;
    max-width: 100%;
  }

  /* CTA Box */
  .cta-block{
    margin-top: 20px;
    padding: 16px 12px;
    border-radius: 18px;
  }

  .cta-title{
    font-size: 15px;
    margin-bottom: 12px;
  }

  .cta-buttons{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn{
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 14px 14px;
    min-height: 72px;
    border-radius: 16px;
    gap: 12px;
  }

  .btn-icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .btn-icon svg{
    width: 20px;
    height: 20px;
  }

  .btn-label{
    font-size: 17px;
  }

  .btn-sub{
    font-size: 12px;
  }

  .btn-arrow{
    font-size: 20px;
  }

  .cta-hint{
    font-size: 12px;
    line-height: 1.5;
    margin-top: 10px;
  }

  /* Kontaktleiste */
  .contact-inner{
    padding: 18px 12px 14px;
    gap: 10px;
  }

  .contact-item{
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }

  /* Galerie unten */
  .teaser{
    padding: 16px;
  }

  .teaser-head h2{
    font-size: 17px;
  }

  .teaser-head p{
    font-size: 14px;
  }

  .after-cta-actions{
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .pill{
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
}

#impressum p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
}

.logo-link:hover .logo-card {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.legal-head {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,0,0,.08);
}

.legal-head h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.3px;
  color: black;
}

.container {
  width: min(1100px, 100%);
}

.teaser {
  max-width: 100%;
}

main.teaser p {
  line-height: 1.7;
  color: #444;
}