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

:root {
  --text: #f4f4f5;
  --accent: #c9a962;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: #0a0a0b;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.landing {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.landing__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.landing__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  pointer-events: none;
  animation: fade-in 1s ease-out both;
}

.landing__title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.75rem, 4.25vw, 2.875rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-align: right;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  }

  50% {
    opacity: 0.55;
    text-shadow:
      0 0 20px rgba(201, 169, 98, 0.5),
      0 2px 24px rgba(0, 0, 0, 0.6);
  }
}

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