/* reset and box‑sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    position: relative;
    /* allow page to grow and scroll */
    min-height: 100vh;
    background: #000;
    font-family: 'Iowan Old Style', serif;
    color: #fff;
    overflow: auto;                /* <-- allow scrolling */
  }
  
  /* upper‑left group */
  .top-left {
    position: absolute;
    top: 5%;
    left: 5%;
  }
  
  .top-left h2 {
    font-size: 2rem;
    line-height: 1.2;
    color: #fff;
    font-weight: normal;
  }
  
  .top-left h2.mute {
    color: rgba(255, 255, 255, 0.3);
  }
  
  /* lower‑right group */
  .bottom-right {
    position: absolute;
    bottom: 5%;
    right: 5%;
    text-align: right;
    /* no transform here on desktop */
  }
  
  .title {
    font-size: 6rem;
    font-weight: normal;
    line-height: 1;
  }
  
  .byline {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: normal;
  }
  
  /* bottom‑left icon container */
  .bottom-left {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: flex;
    align-items: center;           /* vertically center icons */
    gap: 1rem;
  }
  
  .bottom-left .icon {
    display: block;
    width: 2rem;
    height: auto;
    cursor: pointer;
  }
  
  .bottom-left .apple-icon {
    width: 5rem;                   /* 2rem × 2.5 */
  }
  
  /* --- mobile adjustments --- */
  @media (max-width: 768px) {
    .top-left h2 {
      font-size: 1.2rem;
    }
    .bottom-right .title {
      font-size: 4rem;
    }
    .byline {
      font-size: 1rem;
    }
  
    /* center the bottom‑right block on mobile */
    .bottom-right {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      text-align: center;
    }
  
    /* scale icons down proportionally */
    .bottom-left .spotify-icon {
      width: 1.5rem;
    }
    .bottom-left .apple-icon {
      width: calc(1.5rem * 2.5);  /* =3.75rem */
    }
  }
  