* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
body,
html {
  height: 100%;
    font-family: "Montserrat", sans-serif;
}
:root {
  --bg: #000000;
  --text: #ffffff;
  --subtext: #cccccc;
  --accent: #ffffff;
}

/* ---------------------------------------------------- */
/*                     HEADER DESKTOP                   */
/* ---------------------------------------------------- */

/* ==========================
   HEADER / NAV – OPTIMIERT
   (Klassen bleiben gleich)
   ========================== */

.site-header{
  background:#000000;
  border-bottom:1px solid rgba(255,255,255,0.12);
  font-family:"Montserrat", sans-serif;
  padding:28px 6%;
  position:sticky;
  top:0;
  z-index:999;
  -webkit-backdrop-filter:saturate(120%);
  backdrop-filter:saturate(120%);
}

.header-flex{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}

.logo{
  font-size:1.45rem;
  font-weight:600;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:#ffffff;
  text-decoration:none;
  line-height:1;
}

/* NAV */
.main-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:2rem;
  align-items:center;
}

.main-nav a{
  font-size:0.95rem;
  letter-spacing:0.18em;
  color:#ffffff;
  text-decoration:none;
  text-transform:uppercase;
  opacity:0.92;
  transition:opacity 0.22s ease;
}

.main-nav a:hover{
  opacity:0.65;
}

/* Optional: sichtbarer Fokus für Tastatur */
.main-nav a:focus-visible,
.nav-toggle:focus-visible{
  outline:1px solid rgba(255,255,255,0.55);
  outline-offset:4px;
}

/* HAMBURGER */
.nav-toggle{
  display:none; /* wird mobil sichtbar */
  flex-direction:column;
  gap:6px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0.35rem;
  -webkit-tap-highlight-color:transparent;
}

.nav-toggle span{
  width:24px;
  height:2px;
  background:#ffffff;
  display:block;
  transition:transform 0.3s ease, opacity 0.2s ease;
  transform-origin:center;
}

/* ==========================
   MOBILE
   ========================== */
@media (max-width: 768px){
  .site-header{
    padding:22px 6%;
  }

  /* Hamburger sichtbar */
  .nav-toggle{
    display:flex;
  }

  /* Menü versteckt */
  .main-nav{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    background:#000000;
    border-top:1px solid rgba(255,255,255,0.12);
    box-shadow:0 18px 46px rgba(0,0,0,0.18);

    /* Smooth open/close ohne fixe Höhe */
    max-height:0;
    overflow:hidden;
    transition:max-height 0.35s ease;
  }

  /* Menü geöffnet */
  .main-nav.open{
    max-height:320px; /* genug Luft für Links + Padding */
  }

  .main-nav ul{
    flex-direction:column;
    align-items:flex-start;
    padding:18px 6%;
    gap:14px;
  }

  .main-nav a{
    font-size:0.95rem;
    letter-spacing:0.20em;
  }

  /* Hamburger Animation */
  .nav-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2){
    opacity:0;
  }

  .nav-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
  }
}

/* Optional: noch kompakter auf sehr kleinen Screens */
@media (max-width: 430px){
  .site-header{
    padding:18px 8%;
  }

  .logo{
    font-size:1.25rem;
    letter-spacing:0.11em;
  }
}

.site-footer {
  background-color: #000;
  color: #aaa;
  padding: 60px 20px 40px;
  font-size: 0.9em;
  border-top: 1px solid #222;
  margin-top: 100px;
}
.footer-content {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.footer-quote blockquote {
  font-style: italic;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
  color: var(--subtext);
}
.footer-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  text-align: center;
}
.link-group h4 {
  text-transform: uppercase;
  color: var(--text);
  font-size: 1em;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link-group li {
  margin-bottom: 8px;
}
.link-group a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
  font-size: 0.85em;
}
.link-group a:hover {
  color: var(--subtext);
}
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  color: #666;
}
.footer-brand {
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ==========================
   KONTAKT – QUIET LUXURY
   (bestehende Klassen)
   ========================== */

.kontakt-section{
  background:#ffffff;
  color:#0b0b0b;
  padding:110px 8%;
}

.kontakt-wrap{
  max-width:760px;
  margin:0 auto;
}

/* Label */
.kontakt-label{
  display:inline-block;
  font-size:0.75rem;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:#6d6d6d;
  margin:0 0 18px 0;
  position:relative;
  padding-left:18px;
}

.kontakt-label::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:10px;
  height:1px;
  background:rgba(0,0,0,0.55);
  transform:translateY(-50%);
}

/* Title */
.kontakt-section h2{
  font-size:2.4rem;
  font-weight:400;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin:0 0 22px 0;
  line-height:1.15;
}

/* Intro */
.kontakt-intro{
  font-size:1.05rem;
  line-height:1.9;
  color:#2a2a2a;
  margin:0 0 36px 0;
  max-width:620px;
}

/* Form */
.kontakt-form{
  display:grid;
  gap:22px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-group label{
  font-size:0.75rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:#6d6d6d;
}

.form-group input,
.form-group textarea{
  font-family:inherit;
  font-size:0.95rem;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,0.18);
  background:#ffffff;
  color:#0b0b0b;
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#0b0b0b;
  box-shadow:0 0 0 1px rgba(0,0,0,0.25);
}

/* Checkbox */
.checkbox-group{
  flex-direction:row;
  align-items:flex-start;
  gap:10px;
  font-size:0.85rem;
  line-height:1.6;
  color:#2a2a2a;
}

.checkbox-group input{
  margin-top:4px;
}

.checkbox-group a{
  color:#0b0b0b;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,0.3);
}

.checkbox-group a:hover{
  border-color:rgba(0,0,0,0.6);
}

/* CTA */
.cta-button{
  align-self:flex-start;
  margin-top:18px;
  padding:12px 26px;
  background:#0b0b0b;
  color:#ffffff;
  border:none;
  font-size:0.8rem;
  letter-spacing:0.22em;
  text-transform:uppercase;
  cursor:pointer;
  transition:opacity 0.2s ease, transform 0.2s ease;
}

.cta-button:hover{
  opacity:0.85;
  transform:translateY(-1px);
}

/* ==========================
   MOBILE
   ========================== */
@media (max-width: 768px){
  .kontakt-section{
    padding:90px 8%;
    text-align:center;
  }

  .kontakt-label{
    padding-left:0;
  }

  .kontakt-label::before{
    display:none;
  }

  .kontakt-section h2{
    font-size:1.8rem;
    letter-spacing:0.1em;
  }

  .kontakt-intro{
    font-size:0.92rem;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  .kontakt-form{
    max-width:520px;
    margin:0 auto;
    text-align:left;
  }

  .cta-button{
    align-self:center;
  }
}

@media (max-width: 430px){
  .kontakt-section{
    padding:80px 10%;
  }

  .kontakt-section h2{
    font-size:1.55rem;
  }

  .kontakt-intro{
    font-size:0.82rem;
    max-width:330px;
  }
}

/* ==========================
   LEGAL IMPRINT – QUIET LUXURY
   (neue Klassen komplett)
   ========================== */

.legal-imprint{
  background:#ffffff;
  color:#0b0b0b;
  padding:110px 8%;
}

.legal-imprint__wrap{
  max-width:900px;
  margin:0 auto;
}

/* Head */
.legal-imprint__head{
  margin:0 0 48px 0;
}

.legal-imprint__label{
  display:inline-block;
  margin:0 0 18px 0;
  font-size:0.75rem;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:#6d6d6d;
  position:relative;
  padding-left:18px;
}

.legal-imprint__label::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:10px;
  height:1px;
  background:rgba(0,0,0,0.55);
  transform:translateY(-50%);
}

.legal-imprint__title{
  margin:0;
  font-size:2.3rem;
  font-weight:400;
  letter-spacing:0.10em;
  text-transform:uppercase;
  line-height:1.15;
}

/* Content */
.legal-imprint__content{
  display:flex;
  flex-direction:column;
  gap:36px;
}

/* Block */
.legal-imprint__block{
  max-width:760px;
}

.legal-imprint__heading{
  margin:0 0 10px 0;
  font-size:1.05rem;
  font-weight:500;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:#0b0b0b;
}

.legal-imprint__text{
  margin:0;
  font-size:0.95rem;
  line-height:1.8;
  color:#2a2a2a;
}

/* Links */
.legal-imprint__link{
  color:#0b0b0b;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,0.22);
  padding-bottom:2px;
  transition:opacity 0.2s ease, border-color 0.2s ease;
}

.legal-imprint__link:hover{
  opacity:0.75;
  border-color:rgba(0,0,0,0.45);
}

.legal-imprint__link:focus-visible{
  outline:2px solid rgba(0,0,0,0.45);
  outline-offset:4px;
}

/* ==========================
   MOBILE
   ========================== */
@media (max-width: 768px){
  .legal-imprint{
    padding:90px 8%;
  }

  .legal-imprint__label{
    padding-left:0;
  }

  .legal-imprint__label::before{
    display:none;
  }

  .legal-imprint__title{
    font-size:1.85rem;
    letter-spacing:0.08em;
  }

  .legal-imprint__content{
    gap:28px;
  }
}

@media (max-width: 430px){
  .legal-imprint{
    padding:80px 10%;
  }

  .legal-imprint__title{
    font-size:1.6rem;
  }

  .legal-imprint__text{
    font-size:0.85rem;
  }
}
