* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text: #e5e5e5;
  --muted: rgba(229,229,229,0.70);
  --glass: rgba(0,0,0,0.45);
  --glass2: rgba(0,0,0,0.55);
  --stroke: rgba(255,255,255,0.10);
}

body {
  min-height: 100vh;
  font-family: "Georgia", serif;
  color: var(--text);

  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.88)),
    url("tlo.jpg");

  background-size: cover;
  background-position: center 5%;
  background-repeat: no-repeat;
}

.site-header {
  padding: 28px 18px 20px;
}

.brand {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo {
  font-size: 34px;
  letter-spacing: 2px;
  font-weight: 400;
}

.tag {
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.7;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
}

.track-card {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 60px auto;
  background: rgba(18,18,18,0.88);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.45);
}

.track-image {
  flex: 1 1 500px;
  min-height: 420px;
  max-height: 520px;
  overflow: hidden;
}

.track-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.track-content {
  flex: 1 1 400px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.track-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f3e7d0;
}

.track-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d6d6d6;
}

.track-note {
  margin-top: 20px;
  color: #bfa27a;
  font-style: italic;
}

.site-footer {
  padding: 24px 18px 26px;
  text-align: center;
}

.studio-manifest {
  margin-top: 20px;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: rgba(255, 215, 170, 0.8);
}

.copyright {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .track-card {
    flex-direction: column;
  }

  .track-image {
    min-height: 320px;
    max-height: 420px;
  }

  .track-content {
    padding: 28px;
  }
}