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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  color: #333;
  padding: 2.5em 2em;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1400px;
}

.logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5em;
}

.bio {
  max-width: 620px;
  width: 100%;
  text-align: center;
  color: #555;
  margin-bottom: 2.5em;
  line-height: 1.75;
}

.bio p {
  margin-bottom: 1em;
}

.bio .verses {
  color: #888;
  font-style: italic;
}

.bio .tagline {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0;
}

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

.section:last-child {
  margin-bottom: 0;
}

.section h2 {
  font-size: 0.7em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #aaa;
  margin-bottom: 1em;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9em;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 1.55em;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}

.links a:hover {
  transform: scale(1.1);
  opacity: 0.88;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.links a:focus-visible {
  outline: 2px solid #333;
  outline-offset: 4px;
}

.linkedin  { background: #0A66C2; }
.youtube   { background: #FF0000; }
.spotify   { background: #1DB954; }
.amazon    { background: #232F3E; }
.apple     { background: #FC3C44; }
.instagram { background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #F77737, #FCAF45); }
.facebook  { background: #1877F2; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.avatar {
  float: left;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0.2em 1.2em 0.8em 0;
  shape-outside: circle(50%);
}

.bio::after {
  content: '';
  display: table;
  clear: both;
}

.mascot {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 0.8em;
  position: relative;
  z-index: 1;
}

.section-album {
  position: relative;
}

.arrows-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

@media (min-width: 900px) {
  .container {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 4em;
    align-items: center;
  }

  .col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin-bottom: 2em;
  }

  .bio {
    text-align: left;
    max-width: 100%;
    margin-bottom: 0;
    font-size: 1.1em;
    line-height: 1.9;
  }

  .col-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2em;
    padding-left: 2em;
    border-left: 1px solid #efefef;
  }

  .section {
    margin-bottom: 0;
  }

  .section h2 {
    font-size: 0.72em;
    letter-spacing: 0.22em;
  }

  .links {
    gap: 1em;
  }

  .links a {
    width: 80px;
    height: 80px;
    font-size: 2.1em;
  }
}
