/* Selbst gehostete Schriften – keine externen Requests (DSGVO) */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/cormorant-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-600.woff2') format('woff2'); }

:root {
  --aegean: #1C6E8C;
  --terra: #D97B53;
  --marble: #F4F0E8;
  --ink: #2A2A28;
  --muted: #7c786e;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--marble);
  color: var(--ink);
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

/* Großes, hauchzartes griechisches Wasserzeichen im Hintergrund */
.watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30vw;
  line-height: 1;
  color: rgba(28, 110, 140, 0.05);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.teaser {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mark { width: 78px; height: 78px; }

.wordmark {
  font-weight: 600;
  font-size: 42px;
  letter-spacing: -0.6px;
  margin-top: 10px;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 4vw, 30px);
  color: var(--aegean);
  margin: 20px 0 30px;
}

.soon {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(42, 42, 40, 0.18);
  border-radius: 999px;
  padding: 7px 16px;
}

.foot {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.foot a { color: var(--muted); text-decoration: none; border-bottom: 1px solid rgba(42,42,40,0.2); }
.foot a:hover { color: var(--aegean); }

/* Punkte im Logo blinken wie ein „tippt gerade…"-Indikator */
@keyframes blink { 0%, 75%, 100% { opacity: 0.35; } 35% { opacity: 1; } }
.mark .d1 { animation: blink 1.5s 0s infinite; }
.mark .d2 { animation: blink 1.5s 0.2s infinite; }
.mark .d3 { animation: blink 1.5s 0.4s infinite; }
@media (prefers-reduced-motion: reduce) {
  .mark .d1, .mark .d2, .mark .d3 { animation: none; opacity: 1; }
}

/* ----- Impressum-Seite ----- */
body.legal-page { display: block; overflow: auto; padding: 0; }
.legal { max-width: 720px; margin: 0 auto; padding: 44px 24px 80px; }
.legal .home { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); margin-bottom: 30px; }
.legal .home img { width: 30px; height: 30px; }
.legal .home b { font-weight: 600; font-size: 19px; }
.legal h1 { font-size: 30px; font-weight: 600; margin: 0 0 6px; }
.legal h2 { font-size: 18px; font-weight: 600; margin: 28px 0 6px; }
.legal p, .legal li { color: #3a3a37; line-height: 1.6; }
.legal a { color: var(--aegean); }
.legal .ph { background: #FBE9D9; color: #8a4524; padding: 1px 6px; border-radius: 4px; }
.legal .foot { position: static; margin-top: 40px; text-align: left; }
.foot .sep { color: rgba(42,42,40,0.35); }
