/* Lavum — Coming Soon Landing
   Brand: BRAND.md §6 Color-Direction "Tiefes Wasser"
   Typography: General Sans (Headings/Wordmark) + Inter (Body)
   Voice: BRAND.md §4 — Du-Ansprache, max 6 Wörter Headlines */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --petrol-500: #1A3D4D;
  --petrol-700: #0F2A36;
  --lava-500: #D85A2E;
  --lava-700: #A8451E;
  --cream: #F4F2EE;
  --cream-deep: #ECE8E1;
  --text-900: #142730;
  --text-600: #4A5963;
  --sun: #F38E43;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-900);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { min-height: 100vh; display: flex; flex-direction: column; }

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 2rem);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__visual {
  width: 100%;
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(20, 39, 48, 0.04),
    0 24px 48px -12px rgba(26, 61, 77, 0.22),
    0 8px 20px -8px rgba(26, 61, 77, 0.14);
  outline: 1px solid rgba(26, 61, 77, 0.08);
  outline-offset: -1px;
}

.wordmark {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 1;
  color: var(--petrol-700);
  letter-spacing: -0.02em;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.wordmark__dot { color: var(--lava-500); }

.tagline {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--petrol-500);
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.coming-soon {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--text-600);
  max-width: 32ch;
  margin: 0 auto;
}

.coming-soon__highlight {
  color: var(--lava-700);
  font-weight: 600;
}

footer {
  background: var(--cream-deep);
  padding: 2rem clamp(1.25rem, 5vw, 2rem);
  border-top: 1px solid rgba(20, 39, 48, 0.08);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer__brand {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--petrol-700);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  color: var(--text-600);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--lava-700);
  outline: none;
}

.footer__links a:focus-visible {
  outline: 2px solid var(--lava-500);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-600);
  opacity: 0.75;
}

/* Legal pages (Impressum, Datenschutz) */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 2rem);
}

.legal h1 {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--petrol-700);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.legal h2 {
  font-family: 'General Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--petrol-500);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal p, .legal li { margin-bottom: 0.75rem; color: var(--text-900); }
.legal ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal a { color: var(--lava-700); }
.legal a:hover { color: var(--lava-500); }

.legal__back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-600);
  text-decoration: none;
}
.legal__back:hover { color: var(--petrol-500); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
