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

html, body {
  height: 100%;
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Montserrat', sans-serif;
}

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
}

/* Logo */
header {
  margin-bottom: 2.5rem;
}

.logo {
  width: clamp(80px, 20vw, 140px);
  height: auto;
  filter: brightness(0.95);
  opacity: 0.92;
}

/* Content */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.release {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}

h1.tagline {
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.location {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

/* Social icons */
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.15s;
}

.socials a:hover {
  opacity: 1;
  transform: scale(1.12);
}

.socials img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 480px) {
  .logo { width: 90px; }
  .socials { gap: 1rem; }
  .socials img { width: 24px; height: 24px; }
}
