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

    :root {
      --gold: #C9A84C;
      --dark: #0d0b09;
      --text: #e8e0d2;
      --muted: #9a8f7e;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      min-height: 100vh;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }

    .hero {
      position: relative;
      width: 100%;
      height: 50vh;
      min-height: 280px;
      max-height: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding-bottom: 2rem;
      overflow: hidden;
    }

    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 60%;
      filter: brightness(0.45) saturate(0.7);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(13,11,9,0.05) 0%,
        rgba(13,11,9,0.2) 50%,
        rgba(13,11,9,0.9) 80%,
        rgba(13,11,9,1) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 1.5rem;
      animation: fadeUp 1.2s ease both;
    }

    .artist-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 9vw, 5rem);
      font-weight: 300;
      letter-spacing: 0.18em;
      color: var(--gold);
      line-height: 1;
      text-transform: uppercase;
    }

    .divider-line {
      width: 50px;
      height: 1px;
      background: var(--gold);
      margin: 0.7rem auto;
      opacity: 0.6;
    }

    .work-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(0.95rem, 3.2vw, 1.5rem);
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.1em;
      color: var(--text);
      opacity: 0.9;
    }

    .movement {
      font-size: clamp(0.65rem, 2vw, 0.85rem);
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.3rem;
    }

    .listen {
      padding: 1.8rem 1.5rem 3rem;
      max-width: 440px;
      margin: 0 auto;
      text-align: center;
      animation: fadeUp 1.4s ease 0.15s both;
      width: 100%;
    }

    .listen-label {
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.2rem;
    }

    .platforms {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.7rem;
      padding: 0.85rem 1.5rem;
      border-radius: 3px;
      text-decoration: none;
      font-family: 'Raleway', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: transform 0.2s ease, opacity 0.2s ease;
      cursor: pointer;
    }

    .btn:active { transform: scale(0.97); }
    .btn-spotify { background: #1DB954; color: #fff; }
    .btn-youtube { background: #FF0000; color: #fff; }
    .btn:hover { opacity: 0.88; }
    .btn svg { width: 19px; height: 19px; flex-shrink: 0; }

    footer {
      text-align: center;
      padding: 1rem 1rem 2rem;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: var(--muted);
      opacity: 0.4;
      text-transform: uppercase;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }