:root {
  --bg: #fffbf6;
  --h2: #d7c6ab;
  --h1: #887b6d;
  --secondary: #6a867d;
  --ink: #4a453e;
  --font-display: "Minion Variable Concept", "Adobe Garamond Pro", "Iowan Old Style", "STIX Two Text", Georgia, serif;
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

/* ---------- Coming-soon Startseite ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw 6vh;
  overflow: hidden;
  text-align: center;
}

.hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(140vw, 1400px);
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

.logo {
  width: min(220px, 42vw);
  height: auto;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
  animation: fade-up 0.9s ease-out both;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 0.9rem;
  animation: fade-up 0.9s ease-out 0.1s both;
}

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.18;
  color: var(--h1);
  margin: 0 0 1.1rem;
  animation: fade-up 0.9s ease-out 0.18s both;
}

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink);
  max-width: 46ch;
  margin: 0 0 2.2rem;
  animation: fade-up 0.9s ease-out 0.26s both;
}

.hero__sub strong {
  color: var(--h1);
  font-weight: 600;
}

.address {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--secondary);
  margin: 0 0 2.4rem;
  animation: fade-up 0.9s ease-out 0.34s both;
}

.address a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.address a:hover {
  border-color: var(--secondary);
}

.social {
  display: flex;
  gap: 1.1rem;
  animation: fade-up 0.9s ease-out 0.42s both;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--h2);
  color: var(--h1);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social a:hover {
  background-color: var(--h1);
  border-color: var(--h1);
  color: var(--bg);
  transform: translateY(-2px);
}

.social svg {
  width: 19px;
  height: 19px;
}

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

@media (prefers-reduced-motion: reduce) {
  .logo, .eyebrow, h1, .hero__sub, .address, .social {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

footer.site-footer {
  position: relative;
  z-index: 1;
  padding: 1.8rem 6vw 2.4rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--secondary);
}

footer.site-footer nav a {
  text-decoration: none;
  color: var(--secondary);
  margin: 0 0.6rem;
}

footer.site-footer nav a:hover {
  color: var(--h1);
}

footer.site-footer .sep {
  color: var(--h2);
}

/* ---------- Impressum / Datenschutz ---------- */

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 6vw 4rem;
}

.page__logo {
  display: block;
  width: 96px;
  height: auto;
  margin: 0 auto 2.8rem;
}

.page h1.page-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--h1);
  margin: 0 0 2rem;
  text-align: center;
}

.page h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--h1);
  margin: 2.2rem 0 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--h2);
}

.page p, .page li {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink);
}

.page ul {
  padding-left: 1.2rem;
  margin: 0.6rem 0;
}

.page a {
  color: var(--secondary);
  text-decoration: underline;
  text-decoration-color: var(--h2);
  text-underline-offset: 2px;
}

.page a:hover {
  color: var(--h1);
}

.back-link {
  display: inline-block;
  margin-top: 2.6rem;
  font-size: 0.85rem;
  color: var(--secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--h2);
}

.back-link:hover {
  color: var(--h1);
  border-color: var(--h1);
}
