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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #222 0, #050505 55%, #000 100%);
  color: #f5f5f5;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

.nav a {
  margin-left: 1.25rem;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cccccc;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
}

/* Hero */
.hero {
  padding: 3rem 0 2rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1rem;
  max-width: 30rem;
  color: #e0e0e0;
  margin-bottom: 1rem;
}

.hero-copy p {
  max-width: 32rem;
  margin-bottom: 0.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease,
    box-shadow 0.1s ease;
}

.button.primary {
  background: linear-gradient(135deg, #bd1e59, #f25e2c);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.button.ghost {
  background: transparent;
  color: #ffffff;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  max-width: 380px;
  width: 100%;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-caption {
  position: absolute;
  left: 8%;
  bottom: 8%;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 0.9rem;
  border-radius: 0.75rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.9);
}

.small-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f7b731;
}

.album-title {
  font-weight: 700;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: 2.5rem 0 3rem;
}

.section h2,
.section h1 {
  margin-bottom: 1rem;
}

.section p + p {
  margin-top: 0.75rem;
}

.section-centered {
  text-align: center;
}

.section-centered .container {
  max-width: 680px;
}

/* Coming soon card */
.coming-soon-card {
  margin-top: 1.75rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 0;
  background: rgba(0, 0, 0, 0.9);
  margin-top: 1rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #aaaaaa;
}

.footer-note {
  opacity: 0.8;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    flex: 1.2;
  }

  .hero-image-wrap {
    flex: 1;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .nav a {
    margin-left: 0.75rem;
    font-size: 0.8rem;
  }

  .header-inner {
    padding: 0.6rem 0;
  }
}

