/* ---------- Variable Schrift, lokal ---------- */
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/Jost-VariableFont_wght.woff2") format("woff2");
}

/* ---------- Farben ---------- */
:root {
  --bg:        #322d28;   /* Wandton aus dem Logo-Bild */
  --bg-glow:   #423b31;
  --bronze:    #c2a878;
  --bronze-hi: #ddc79c;
  --text:      #c6bba8;
  --line:      rgba(194, 168, 120, 0.30);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* dezenter Lichtschein oben rechts, führt die Stimmung des Bildes fort */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(120% 80% at 88% 2%, var(--bg-glow) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Startseite ---------- */
.stage {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 7vw, 4.5rem);
  padding: 3rem 1.5rem;
  text-align: center;
}

.logo {
  width: min(80vw, 57vh);
  max-width: 700px;
  height: auto;
  display: block;
  /* weiche Kante: Mockup-Fläche verschmilzt mit dem Hintergrund */
  -webkit-mask-image: radial-gradient(closest-side, #000 70%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 70%, transparent 100%);
  animation: rise 1.5s ease both;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  animation: rise 1.5s 0.15s ease both;
}
.contact a {
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.35s ease;
}
.contact a:hover,
.contact a:focus-visible { color: var(--bronze-hi); }

.legal {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

/* ---------- Fusszeile / Impressum-Link ---------- */
.legal a,
.back {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
  text-decoration: none;
  transition: opacity 0.35s ease, color 0.35s ease;
}
.legal a:hover,
.legal a:focus-visible,
.back:hover,
.back:focus-visible { opacity: 1; color: var(--bronze); }

a:focus-visible {
  outline: 1px solid var(--line);
  outline-offset: 6px;
  border-radius: 2px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .logo, .contact { animation: none; }
}

/* ---------- Impressum ---------- */
.doc {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(3rem, 9vw, 6rem) 1.5rem;
  line-height: 1.75;
}
.doc h1 {
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 2.6rem;
}
.doc h2 {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9c9280;
  margin-bottom: 0.5rem;
}
.doc section { margin-bottom: 2.1rem; }
.doc p { font-size: 1.05rem; }
.doc p strong { font-weight: 500; color: #e6dfd3; }
.doc a { color: var(--bronze); text-decoration: none; transition: color 0.3s ease; }
.doc a:hover, .doc a:focus-visible { color: var(--bronze-hi); }
.rule { height: 1px; background: var(--line); margin: 2.4rem 0; }
.note { font-size: 1rem; color: #9c9280; line-height: 1.7; }
.back { display: inline-block; margin-top: 1rem; }
