/* Minimal reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background-color: #f7f4ee;
  color: #1f2937; /* dark neutral for strong contrast */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vh, 20px);
  padding: clamp(16px, 4vw, 32px);
  text-align: center;
}

.logo {
  margin: 0;
}

.logo__img {
  width: clamp(120px, 28vw, 240px);
  height: auto;
  display: block;
  animation: spin 20s linear infinite;
  will-change: transform;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.headline {
  margin: 0;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
  .logo__img {
    animation: none;
  }
}
