@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600&family=Space+Grotesk:wght@400;500;600&display=swap");

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

:root {
  color-scheme: light;
  --cream: #f4eee6;
  --deep: #1f1f1f;
  --muted: #5a564f;
  --rose: #e48b90;
  --rose-deep: #b8616a;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(25, 18, 5, 0.12);
  --radius: 22px;
  --page-width: 1100px;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--deep);
  background: radial-gradient(circle at top, #f8f1ea 0%, #f4eee6 45%, #efe4d8 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 36px 24px 48px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  margin-top: 16px;
}

.brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--rose-deep);
  font-weight: 600;
  margin: 0;
}

h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 4px 0 0;
}

.about {
  margin-top: 32px;
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-links {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(31, 31, 31, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  background: rgba(228, 139, 144, 0.2);
}

.contact-links svg {
  width: 22px;
  height: 22px;
  fill: var(--deep);
}

.apps {
  margin-top: 56px;
}

.apps h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.app-card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(25, 18, 5, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card a {
  display: grid;
  gap: 16px;
}

.app-card img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.app-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.app-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 50px rgba(25, 18, 5, 0.14);
}

.impressum {
  margin-top: 72px;
  color: var(--muted);
  font-size: 0.95rem;
}

.impressum h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--deep);
}

.impressum p {
  margin: 4px 0;
}

.legal {
  padding-bottom: 80px;
}

.legal-section {
  margin-top: 32px;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-section h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--deep);
}

.legal-section p {
  margin: 6px 0;
}

.legal-footer {
  margin-top: 48px;
  font-weight: 600;
}

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

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
