/* ============================================================
   Kollmann Wohndesign – Stylesheet für Rechtstexte
   (Impressum, Datenschutz, AGB) – im Stil der Hauptseite
   ============================================================ */

/* Hausschrift Kollmann – Zurich Extended ("Zurche") */
@font-face{
  font-family:'Zurich';
  src:url('Zurche.ttf') format('truetype');
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}

:root{
  --bg:           #faf6ee;
  --bg-alt:       #f1ead9;
  --bg-dark:      #2c2218;
  --wood:         #7a4a25;
  --wood-deep:    #4a2a10;
  --wood-light:   #b58660;
  --text:         #1f1a14;
  --text-muted:   #6b5d4f;
  --line:         rgba(31,26,20,.12);

  --serif: 'Zurich', Georgia, 'Times New Roman', serif;
  --sans:  'Zurich', system-ui, -apple-system, sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* ------- Header ------- */
header.lhead{
  position:sticky;top:0;z-index:100;
  background:rgba(250,246,238,.94);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.lhead .nav{
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;
  padding:.7rem 1.5rem;max-width:1240px;margin:0 auto;
}
.lhead .logo img{height:44px;width:auto}
.lhead .back{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--text);transition:color .2s;
}
.lhead .back:hover{color:var(--wood)}
.lhead .back svg{width:13px;height:13px;fill:none;stroke:currentColor;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round}

/* ------- Hero / Titel ------- */
.legal-hero{
  background:var(--bg-alt);
  border-bottom:1px solid var(--line);
  padding:3.5rem 1.5rem 3rem;
}
.legal-hero .inner{max-width:840px;margin:0 auto}
.legal-hero .eyebrow{
  font-size:.78rem;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--wood);display:inline-block;margin-bottom:.6rem;
}
.legal-hero h1{
  font-family:var(--serif);
  font-size:clamp(2.2rem,5vw,3.4rem);
  font-weight:500;line-height:1.05;letter-spacing:-.02em;color:var(--text);
}

/* ------- Inhalt ------- */
main.legal{padding:3.5rem 1.5rem 5rem}
.legal-content{max-width:840px;margin:0 auto}
.legal-content h2{
  font-family:var(--serif);
  font-size:1.5rem;font-weight:500;letter-spacing:-.01em;
  color:var(--text);
  margin:2.6rem 0 .9rem;
}
.legal-content h2:first-child{margin-top:0}
.legal-content h3{
  font-family:var(--sans);
  font-size:.82rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--wood);
  margin:2rem 0 .6rem;
}
.legal-content p{color:var(--text-muted);margin:0 0 1rem}
.legal-content ul{color:var(--text-muted);margin:0 0 1rem 1.2rem}
.legal-content li{margin-bottom:.35rem}
.legal-content a{color:var(--wood);text-decoration:underline;text-underline-offset:2px}
.legal-content a:hover{color:var(--wood-deep)}
.legal-content strong{color:var(--text);font-weight:600}
.legal-content .muted{font-size:.85rem;color:var(--text-muted);opacity:.8}

/* Kontakt-/Datenblock */
.legal-block{
  background:#fff;
  border:1px solid var(--line);
  border-radius:2px;
  padding:1.4rem 1.6rem;
  margin:1.2rem 0 1.6rem;
  color:var(--text-muted);
}
.legal-block strong{display:inline-block;color:var(--text)}

/* ------- Footer (wie Hauptseite) ------- */
footer.site{
  background:var(--bg-dark);color:#cdbfa9;
  padding:4rem 1.5rem 0;
}
.footer-bottom{
  max-width:1240px;margin:0 auto;
  display:flex;justify-content:space-between;align-items:center;
  padding:1.6rem 0;flex-wrap:wrap;gap:1rem;
  font-size:.82rem;color:rgba(205,191,169,.55);
}
.footer-bottom .legal-links{display:flex;gap:1.5rem;flex-wrap:wrap}
.footer-bottom a{transition:color .2s}
.footer-bottom a:hover{color:var(--wood-light)}
.footer-top{
  max-width:1240px;margin:0 auto;
  display:flex;justify-content:space-between;align-items:flex-end;gap:2rem;
  flex-wrap:wrap;
  padding-bottom:2.5rem;border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-top .logo img{height:60px;width:auto;filter:brightness(1.1)}
.footer-top .contact{font-size:.92rem;color:rgba(205,191,169,.85);line-height:1.7;text-align:right}

@media (max-width:600px){
  .footer-top{flex-direction:column;align-items:flex-start}
  .footer-top .contact{text-align:left}
  .footer-bottom{flex-direction:column;text-align:center;gap:.8rem}
}
