:root {
  --bg: #0a0a0a;
  --fg: #f2ede6;
  --accent: #c8955a;
  --accent-dim: #8a6a48;
  --muted: #9a9490;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* ---------- Startseite ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vh 6vw;
  overflow: hidden;
  animation: fade-in 1.1s ease-out;
}

.hero__mascot {
  width: min(320px, 50vw);
  height: auto;
  margin-bottom: 1.5rem;
}

.teaser-eyebrow {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.teaser-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 1.2rem;
  color: var(--fg);
}

.teaser-text {
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  font-weight: 300;
  color: #d8d3cc;
  line-height: 1.7;
  margin: 0 0 1.6rem;
}

.teaser-payoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin: 0 0 3rem;
}

.bean-inline {
  width: 2.6em;
  height: auto;
  flex-shrink: 0;
}

.bean-inline--small {
  width: 2.1em;
}

.hero__sub {
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  font-weight: 300;
  color: var(--muted);
  margin: 0 0 3rem;
  letter-spacing: 0.02em;
}

.hero__contact {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
}

.hero__contact a {
  color: var(--fg);
}

.hero__footer {
  margin-top: 3.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero__footer a {
  color: var(--muted);
  margin: 0 0.5em;
}

.hero__footer a:hover {
  color: var(--accent);
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 6vw 5rem;
  line-height: 1.7;
}

.legal a.back {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal a.back:hover {
  color: var(--accent);
}

.legal h1 {
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.legal h2 {
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--accent);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}

.legal p {
  color: #d8d3cc;
  margin: 0 0 1rem;
}

.legal ul {
  color: #d8d3cc;
  padding-left: 1.2rem;
}

.legal li {
  margin-bottom: 0.4rem;
}
