:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --text: #24201b;
  --muted: #6b6357;
  --accent: #2f6b4f;
  --accent-soft: #e8f0eb;
  --border: #e5ded3;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16130f;
    --surface: #1e1a15;
    --text: #f0ebe3;
    --muted: #a79c8c;
    --accent: #7fbf9c;
    --accent-soft: #23342b;
    --border: #322b23;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2rem 1.25rem 3rem;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration: none;
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
}

/* ---------- Platzhalterseite ---------- */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 3rem 2.25rem 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.cup {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.steam {
  animation: rise 3.2s ease-in-out infinite;
  transform-origin: center bottom;
}

.steam-2 {
  animation-delay: 0.5s;
}

.steam-3 {
  animation-delay: 1s;
}

@keyframes rise {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(1px);
  }
  50% {
    opacity: 0.9;
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .steam {
    animation: none;
    opacity: 0.6;
  }
}

.brand {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  line-height: 1.25;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.lead {
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 30rem;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.button:hover {
  opacity: 0.9;
}

.divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0 1.75rem;
}

.cafe {
  font-size: 0.95rem;
  color: var(--muted);
}

.cafe strong {
  color: var(--text);
  font-weight: 600;
}

.cafe p {
  margin: 0.2rem 0;
}

.en {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.en h2 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.en p {
  margin: 0;
}

/* ---------- Rechtstexte ---------- */

.legal {
  margin-top: 2.5rem;
}

.legal h1 {
  margin-bottom: 1.75rem;
}

.legal h2 {
  font-size: 1.05rem;
  margin: 2.25rem 0 0.5rem;
  letter-spacing: -0.01em;
}

.legal h3 {
  font-size: 0.98rem;
  margin: 1.5rem 0 0.35rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal address {
  font-style: normal;
  color: var(--muted);
}

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

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

.back {
  display: inline-block;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-decoration: none;
}

.back:hover {
  text-decoration: underline;
}

.stand {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Fusszeile ---------- */

.site-footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer a {
  margin: 0 0.5rem;
}
