
:root{
  --max-width: 740px;                  
  --pale-magenta: #eeb2d6;             
  --text: #000;
  --bg: #fff;
  --gap: 36px;
  --hero-height: 50vh;                
}


* { box-sizing: border-box; }
html,body { height: 100%; }
body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}


.container{
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 28px 20px;
}


.section{
  padding-top: 28px;
  padding-bottom: 28px;
  display: block;
}


.section--hero{
  margin: 0;
  padding: 0;
  overflow: visible;
}


.hero__stage{
  width: 100%;
  height: var(--hero-height); 
  background: #000;           
  position: relative;
  overflow: hidden;
}


.banner-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1; 
  pointer-events: none; 
}


.banner-logo-wrap{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; 
  pointer-events: none; 
  display: flex;
  align-items: center;
  justify-content: center;
}


.banner-logo{
  max-width: 60%;
  height: auto;
  display: block;
  transform: translate3d(0,0,0);
  transition: transform 220ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  pointer-events: none;
}


@media (max-width: 480px) {
  .banner-logo { max-width: 78%; }
}


.hero__content{
  padding-top: 26px;
  padding-bottom: 40px;
  text-align: center;
}


.site-title{
  margin: 0;
  font-size: 28px;       
  line-height: 1.1;
  font-weight: 600;
  color: var(--pale-magenta); 
  letter-spacing: -0.02em;
}


.hero__links{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
  font-size: 1.05rem;
}


.link{
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.98;
}

.link:hover,
.link:focus {
  opacity: 0.6;
  outline: none;
}


.section--promo{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
}

.promo__wrap{
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo__link{
  display: inline-block;
  line-height: 0; 
  max-width: 900px;
  width: 100%;
}

.promo__image{
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: none;
}


.section--music{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: center;
}

.music__wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}


.music__quote{
  margin: 0;
  font-size: 1.15rem;
  font-style: italic;
  max-width: calc(var(--max-width) - 40px);
  line-height: 1.5;
  color: var(--text);
}


.music__quote strong{
  font-weight: 700;
}


.album-link{
  display: inline-block;
  margin-top: 8px;
  line-height: 0;
}

.album__art{
  width: 260px;
  height: auto;
  display: block;
  border-radius: 4px;
  cursor: pointer;
}


.section--contact{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 72px;
  text-align: center;
}

.contact__wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}


.section-title{
  margin: 0;
  color: var(--pale-magenta);
  font-size: 1.35rem;
  font-weight: 700;
}


.contact__text{
  margin: 0;
  max-width: calc(var(--max-width) - 40px);
  font-size: 1rem;
}


.site-footer{
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 18px 0;
  text-align: center;
  color: rgba(0,0,0,0.6);
  font-size: 0.9rem;
}


@media (min-width: 880px){
  .hero__links { gap: 80px; font-size: 1.08rem; }
  .site-title { font-size: 36px; } 
  .album__art { width: 320px; }
  .promo__image { max-height: 72vh; }
}


a:focus {
  outline: 3px solid rgba(238,178,214,0.25);
  outline-offset: 3px;
  border-radius: 4px;
}
