:root {
  --white: #f7f7f2;
  --overlay: rgba(5, 7, 16, 0.72);
  --shadow: rgba(10, 12, 24, 0.6);
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: linear-gradient(var(--overlay), var(--overlay)), url("hero.webp") center / cover no-repeat fixed;
  color: var(--white);
  text-align: center;
}

.stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.logo {
  width: clamp(220px, 38vw, 520px);
  height: auto;
  filter: drop-shadow(0 16px 30px var(--shadow));
  animation: pulse 3.6s ease-in-out infinite;
}

.copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.line-one {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(24px, 3.2vw, 40px);
  letter-spacing: 0.02em;
  text-shadow: 0 10px 24px rgba(8, 10, 18, 0.6);
}

.line-two {
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(8, 10, 18, 0.55);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 16px 30px rgba(10, 12, 24, 0.6));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 22px 40px rgba(255, 255, 255, 0.25));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 16px 30px rgba(10, 12, 24, 0.6));
  }
}

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