@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/raleway.woff2") format("woff2");
}

@font-face {
  font-family: "Architects Daughter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/architects-daughter.woff2") format("woff2");
}

:root {
  --background: #e7e7e8;
  --foreground: #231f20;
  --primary: #690033;
  --border: #d6d3d4;
  --muted-foreground: #767676;
  --copy: #373737;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Raleway", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Coming-soon page ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 80px 32px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.5s ease-out forwards;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  display: block;
  height: 80px;
  width: auto;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .logo {
    height: 96px;
  }
}

.badge {
  margin-top: 12px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

h1.headline {
  font-family: "Architects Daughter", cursive;
  margin: 0 auto;
  max-width: 42rem;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--foreground);
}

@media (min-width: 768px) {
  h1.headline {
    font-size: 48px;
  }
}

.intro {
  margin: 20px auto 0;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--copy);
}

@media (min-width: 768px) {
  .intro {
    font-size: 18px;
  }
}

.contact-row {
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--copy);
}

@media (min-width: 640px) {
  .contact-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 32px;
    row-gap: 12px;
  }
}

.contact-row a,
.contact-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.contact-row a.phone {
  font-weight: 600;
  color: var(--foreground);
  transition: opacity 0.2s;
}

.contact-row a.mail {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.contact-row a:hover {
  opacity: 0.7;
}

.site-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 20px 32px;
  }
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.site-footer a:hover {
  opacity: 0.7;
}

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */

.legal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px;
  background: #fff;
}

@media (min-width: 768px) {
  .legal-header {
    padding: 20px 32px;
  }
}

.legal-header .logo {
  height: 40px;
}

.legal-main {
  padding: 44px 20px;
  max-width: 768px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .legal-main {
    padding: 44px 32px;
  }
}

.legal-main h1 {
  font-family: "Architects Daughter", cursive;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 32px;
  color: var(--foreground);
}

.legal-main p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--copy);
  margin: 0 0 16px;
}

.legal-main a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-block {
  margin-bottom: 32px;
}

.legal-block p.lead {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0;
}

.legal-small {
  font-size: 14px;
  color: var(--muted-foreground);
}

.legal-small p {
  font-size: 14px;
  color: var(--muted-foreground);
  margin: 0 0 4px;
}

.legal-small p.lead {
  font-weight: 600;
  color: var(--foreground);
}

.sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sections h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--foreground);
}

.sections p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--copy);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation-duration: 0.01ms !important;
  }
}
