/* Gemeinsames Layout für Impressum, Datenschutz und AGB —
   gleiche Palette und Typografie wie die Hauptseite, aber ruhig und lesbar. */
:root{
  --black:#0B0A08;
  --coal:#16130E;
  --gold-hi:#FBF1C6;
  --gold:#E0B64A;
  --gold-lo:#8F6F28;
  --ivory:#F4EDDD;
  --muted:#A89F8D;
}
*{margin:0;padding:0;box-sizing:border-box}
body{
  background:var(--black);
  color:var(--ivory);
  font-family:'Jost',sans-serif;
  font-weight:300;
  line-height:1.8;
  -webkit-text-size-adjust:100%;
}
::selection{background:var(--gold);color:var(--black)}
a{color:var(--gold-hi)}
a:hover{color:var(--gold)}

/* Kopfzeile */
header{
  position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:18px 8vw;
  background:linear-gradient(180deg,rgba(8,7,5,.99) 60%,rgba(8,7,5,.9) 100%);
  border-bottom:1px solid rgba(224,182,74,.16);
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--ivory)}
.brand svg{width:30px;height:30px;flex:none}
.brand b{
  font-family:'Cinzel',serif;font-weight:600;font-size:.95rem;
  letter-spacing:.3em;padding-left:.3em;color:#FFFBF0;
}
.zurueck{
  font-size:.7rem;letter-spacing:.22em;text-transform:uppercase;font-weight:400;
  color:var(--ivory);text-decoration:none;border:1px solid rgba(244,237,221,.3);
  padding:9px 18px;border-radius:2px;transition:border-color .3s,color .3s;white-space:nowrap;
}
.zurueck:hover{border-color:var(--gold);color:var(--gold-hi)}

/* Inhalt */
main{max-width:820px;margin:0 auto;padding:72px 8vw 40px}
h1{
  font-family:'Cinzel',serif;font-weight:500;
  font-size:1.9rem;font-size:clamp(1.7rem,4.4vw,2.6rem);
  line-height:1.25;color:#FFFBF0;margin-bottom:14px;
}
.stand{
  font-size:.68rem;letter-spacing:.26em;text-transform:uppercase;
  color:var(--gold);margin-bottom:8px;padding-left:.26em;
}
.goldline{
  width:72px;height:1px;margin:30px 0 44px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
h2{
  font-family:'Cinzel',serif;font-weight:500;
  font-size:1.15rem;font-size:clamp(1.1rem,2.4vw,1.35rem);
  color:var(--gold-hi);margin:46px 0 16px;line-height:1.35;
}
h3{
  font-family:'Jost',sans-serif;font-weight:500;font-size:1rem;
  color:var(--ivory);margin:26px 0 10px;
}
p{color:var(--muted);margin-bottom:16px}
p strong,li strong{color:var(--ivory);font-weight:400}
ul,ol{color:var(--muted);margin:0 0 16px 1.3em}
li{margin-bottom:9px}
.kasten{
  border:1px solid rgba(224,182,74,.22);border-radius:3px;
  background:linear-gradient(180deg,rgba(224,182,74,.05),transparent 60%);
  padding:26px 28px;margin:26px 0;
}
.kasten p:last-child{margin-bottom:0}
.adresse{color:var(--ivory);font-style:normal;line-height:1.9}
.hinweis{
  font-size:.9rem;color:rgba(168,159,141,.8);
  border-left:2px solid rgba(224,182,74,.35);padding-left:18px;margin:26px 0;
}

/* Fußzeile */
footer{
  border-top:1px solid rgba(244,237,221,.08);
  padding:34px 8vw 46px;margin-top:60px;
  display:flex;flex-wrap:wrap;gap:14px 30px;align-items:center;justify-content:center;
  text-align:center;
}
footer a{color:var(--muted);text-decoration:none;font-size:.85rem;letter-spacing:.08em}
footer a:hover{color:var(--gold-hi)}
footer small{color:rgba(168,159,141,.55);font-size:.72rem;letter-spacing:.1em;width:100%}

@media (max-width:600px){
  header{padding:14px 6vw}
  .brand b{font-size:.8rem;letter-spacing:.24em}
  .brand svg{width:26px;height:26px}
  .zurueck{padding:8px 13px;font-size:.62rem;letter-spacing:.16em}
  main{padding:52px 6vw 30px}
  .kasten{padding:22px 20px}
  footer{padding:30px 6vw 40px;justify-content:flex-start;text-align:left}
}
