/* =========================================================
   EMOTIONAL : CONFUSED — Baustellen-Seite
   Monochrom, ruhig, atmosphärisch. Das Foto trägt die Stimmung,
   Typografie bleibt zurückhaltend und elegant.
   ========================================================= */
:root{
  --black:#050505;
  --white:#f5f4f1;
  --grey:#b9b9b6;
  --grey-dim:#7b7b78;
  --overlay-dark: rgba(3,3,3,.55);

  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
}

a{ color:inherit; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
}

.hero-bg{
  position:absolute;
  inset:-8% -4%;
  background-image:url("bg.png");
  background-image:url("bg.png");
  background-size:cover;
  background-position:center 40%;
  filter:grayscale(1) contrast(1.08) brightness(.9);
  will-change: transform;
  transform: translateY(0);
}

.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(2,2,2,.65) 0%, rgba(2,2,2,.15) 32%, rgba(2,2,2,.35) 70%, rgba(2,2,2,.85) 100%);
}

.hero-content{
  position:relative; z-index:2;
  padding: 0 1.4rem;
  display:flex; flex-direction:column; align-items:center;
}

.hero-logo{
  width:min(560px, 78vw);
  height:auto;
  margin-bottom:2.2rem;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.55));
}

.hero-notice{
  font-size:clamp(.95rem, 1.6vw, 1.15rem);
  letter-spacing:.03em;
  color:var(--grey);
  line-height:1.7;
  max-width:420px;
  margin:0;
}

/* ---------- Scroll cue ---------- */
.scroll-cue{
  position:absolute; bottom:2.2rem; left:50%; transform:translateX(-50%);
  z-index:2; width:22px; height:36px; border:1px solid rgba(245,244,241,.5); border-radius:20px;
  display:flex; align-items:flex-start; justify-content:center; padding-top:6px;
  text-decoration:none;
}
.scroll-cue span{
  width:3px; height:7px; border-radius:2px; background:var(--white);
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move{
  0%{ opacity:1; transform:translateY(0); }
  70%{ opacity:0; transform:translateY(10px); }
  100%{ opacity:0; transform:translateY(0); }
}

/* ---------- Impressum ---------- */
.imprint-section{
  position:relative;
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 5rem 1.4rem 6rem;
}

.imprint-panel{
  position:relative;
  z-index:2;
  max-width:560px;
  width:100%;
  background: rgba(5,5,5,.68);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border: 1px solid rgba(245,244,241,.12);
  border-radius:6px;
  padding: 2.6rem 2.4rem;
}

.eyebrow{
  text-transform:uppercase; letter-spacing:.16em; font-size:.7rem;
  color:var(--grey-dim); font-weight:600; margin:0 0 .8em;
}

.imprint-panel h2{
  font-family:var(--font-display);
  font-size:1.6rem;
  font-variant: small-caps;
  letter-spacing:.04em;
  margin:0 0 1em;
  color:var(--white);
}

.imprint-panel p{
  color:var(--grey);
  line-height:1.75;
  margin:0 0 1.1em;
  font-size:.95rem;
}

.imprint-panel a{
  color:var(--white);
  border-bottom:1px solid rgba(245,244,241,.3);
  text-decoration:none;
}
.imprint-panel a:hover{ border-color:var(--white); }

.imprint-footnote{
  margin-top:1.8em;
  padding-top:1.4em;
  border-top:1px solid rgba(245,244,241,.12);
  font-size:.78rem;
  color:var(--grey-dim);
}

@media (max-width:520px){
  .imprint-panel{ padding:2rem 1.5rem; }
}
