:root {
  --accent: #7790A5;
  --button-bg: rgba(255, 255, 255, 0.04);
  --button-bg-hover: rgba(255, 255, 255, 0.075);
  --card-bg: rgba(5, 8, 11, 0.46);
  --site-width: 1440px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #020508;
  color: var(--accent);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
}

body {
  margin: 0;
  background: #020508;

  background-image: url('images/background_desktop.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;

  color: var(--accent);
}

.site {
  width: 1440px;
  min-height: 2214px;
  margin: 0 auto;
  padding-top: 60px;
  position: relative;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 375px;
  height: 552px;
  object-fit: contain;
  display: block;
}

.tagline {
  margin: 34px 0 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.82;
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.listen-section { margin-top: 82px; }
.discography-section { margin-top: 45px; }
.follow-section { margin-top: 47px; }

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: var(--accent);
  text-align: center;
}

.section-title p {
  margin: 0;
  line-height: 1.15;
  white-space: nowrap;
}

.section-title span {
  width: 68px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.9;
  display: block;
}

.button-row {
  display: grid;
  grid-template-columns: repeat(5, 235px);
  gap: 18px;
  justify-content: center;
  width: 100%;
}

.platform-row { margin-top: 37px; }

.social-icons-row {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.social-icons-row a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  opacity: 0.82;
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}

.social-icons-row img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.social-icons-row a:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(119, 144, 165, 0.28));
}

.main-btn, .listen-btn {
  height: 60px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: var(--button-bg);
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  line-height: 1;
  transition: background .25s ease, box-shadow .25s ease, opacity .25s ease, transform .25s ease;
  opacity: 0.92;
}

.main-btn { width: 235px; }
.main-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.main-btn:hover {
  background: var(--button-bg-hover);
  box-shadow: 0 0 18px rgba(119, 144, 165, 0.18);
  opacity: 1;
  transform: translateY(-1px);
}

.listen-btn:hover {
  background: var(--button-bg-hover);
  box-shadow: 0 0 18px rgba(119, 144, 165, 0.18);
  opacity: 1;
  transform: translateX(-50%) translateY(-1px);
}

.album-grid {
  margin-top: 47px;
  display: grid;
  grid-template-columns: repeat(4, 298px);
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.album-card {
  width: 298px;
  height: 440px;
  border: 1px solid var(--accent);
  background: var(--card-bg);
  border-radius: 6px;
  padding: 16px 19px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  color: var(--accent);
}

.cover {
  width: 260px;
  height: 260px;
  flex: 0 0 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  display: block;
  overflow: hidden;
  clip-path: inset(0 round 6px);
  box-shadow: inset 0 0 0 1px #000100;
}

.album-card h2 {
  height: 34px;
  margin: 16px 0 0;
  text-align: center;
  line-height: 1.08;
  text-transform: uppercase;
  font: inherit;
}

.album-card p {
  height: 18px;
  margin: 4px 0 0;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
}

.listen-btn {
  width: 235px;
  height: 60px;
  background: rgba(255,255,255,0);
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
}

.instagram-card {
  width: 1252px;
  height: 390px;
  margin-top: 45px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--card-bg);
  padding: 20px;
  display: flex;
  align-items: stretch;
}

.instagram-copy {
  width: 294px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
  text-align: center;
}

.instagram-copy p {
  margin: 0;
  line-height: 1.16;
  text-transform: uppercase;
}

.instagram-btn { width: 235px; }

.band-photo {
  width: 939px;
  height: 343px;
  object-fit: cover;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  clip-path: inset(0 round 6px);
  box-shadow: inset 0 0 0 1px #000100;
}

.footer {
  margin-top: 52px;
  display: flex;
  justify-content: center;
  color: var(--accent);
}

.footer-title {
  gap: 35px;
}

.footer-title span {
  width: 77px;
}

.footer-title p {
  font-size: 14px;
  line-height: 1.15;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    font-size: 12px;
  }

  body {
    display: block;
  }

  .site {
  width: 100%;
  min-height: auto;
  padding: 48px 18px 56px;
  background-image: url('images/background_mobile.jpg');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

  .logo {
    width: 230px;
    height: auto;
  }

  .tagline {
    margin-top: 22px;
    font-size: 10px;
  }

  .listen-section {
    margin-top: 54px;
  }

  .section-title {
    gap: 18px;
  }

  .section-title span {
    width: 46px;
    height: 1px;
  }

  .platform-row {
    margin-top: 28px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .platform-row .main-btn {
    width: 100%;
    height: 46px;
    font-size: 10px;
    gap: 8px;
  }

  .platform-row .main-btn img {
    width: 18px;
    height: 18px;
  }

  .platform-row .main-btn:last-child {
    grid-column: 1 / -1;
    width: 50%;
    margin: 0 auto;
  }

  .discography-section {
    margin-top: 46px;
  }

  .album-grid {
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .album-card {
    width: 100%;
    height: 288px;
    padding: 14px 10px 12px;
    border-radius: 6px;
  }

  .cover {
    width: 140px;
    height: 140px;
    flex: 0 0 140px;
  }

  .album-card h2 {
    height: 34px;
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.08;
  }

  .album-card p {
    font-size: 11px;
    margin-top: 3px;
  }

  .listen-btn {
    width: calc(100% - 28px);
    height: 42px;
    bottom: 12px;
    font-size: 11px;
  }

  .follow-section {
    margin-top: 46px;
  }

  .instagram-card {
    width: 100%;
    height: auto;
    margin-top: 28px;
    padding: 12px;
    flex-direction: column;
    gap: 20px;
  }

  .band-photo {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 939 / 343;
  }

  .instagram-copy {
    order: 2;
    width: 100%;
    gap: 20px;
  }

  .instagram-copy p {
    font-size: 11px;
  }

  .instagram-btn {
    width: 220px;
    height: 46px;
    font-size: 11px;
  }

  .social-icons-row a,
  .social-icons-row img {
    width: 22px;
    height: 22px;
  }

  .footer {
    margin-top: 40px;
  }

  .footer-title p {
    font-size: 10px;
  }
}
