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

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  color: #2c2c2c;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  -webkit-font-smoothing: antialiased;
}

.lang-switcher {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.lang-btn {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #6b6b6b;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.125rem;
  transition: color 0.2s ease;
}

.lang-btn:hover {
  color: #2c2c2c;
}

.lang-btn.active {
  color: #2c2c2c;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #c4a882;
}

.lang-divider {
  color: #d0d0d0;
  font-size: 0.75rem;
  user-select: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.hero-content {
  max-width: 42rem;
  text-align: center;
  animation: fadeIn 0.8s ease forwards;
}

.artist-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-bottom: 1.25rem;
}

.divider {
  width: 2.5rem;
  height: 1px;
  background-color: #c4a882;
  margin: 0 auto 2rem;
}

.headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 400;
  line-height: 1.25;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.subline {
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.6;
  color: #6b6b6b;
  max-width: 28rem;
  margin: 0 auto;
}

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

@media (max-width: 480px) {
  .lang-switcher {
    top: 1rem;
    right: 1rem;
  }

  .hero {
    padding: 3.5rem 1.25rem;
  }

  .artist-name {
    letter-spacing: 0.18em;
  }
}
